Exemplo n.º 1
0
  /**
   * Run the String formatDescription(String) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 19.03.15 01:28
   */
  @Test
  public void testFormatDescription_1() throws Exception {
    TagReplacer fixture = new TagReplacer(Locale.getDefault());
    String source = "";

    String result = fixture.formatDescription(source);
    assertEquals("", result);
  }
Exemplo n.º 2
0
  /**
   * Run the String formatDescription(String,boolean,boolean,boolean) method test.
   *
   * @throws Exception
   * @generatedBy CodePro at 19.03.15 01:28
   */
  @Test
  public void testFormatDescription_3() throws Exception {
    TagReplacer fixture = new TagReplacer(Locale.getDefault());
    String source = "";
    boolean simple = true;
    boolean export = true;
    boolean useProjectSpecificID = true;

    String result = fixture.formatDescription(source, simple, export, useProjectSpecificID);

    // add additional test code here
    assertEquals("", result);
  }