Examples of CodeHighlightTag


Examples of br.com.caelum.tubaina.parser.CodeHighlightTag

        "Quarta linha", output);
  }
 
  @Test
  public void testHighlightWithNullParams() throws Exception {
    String output = new CodeHighlightTag().parseHtml("", null);
    Assert.assertEquals("", output);
  }
View Full Code Here

Examples of br.com.caelum.tubaina.parser.CodeHighlightTag

  }
 
  @Test
  public void testInvalidLineNumbers() throws Exception {
    String input = "Só uma linha";
    String output = new CodeHighlightTag().parseHtml(input, Arrays.asList(23));
    Assert.assertEquals(input, output);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.