Package br.com.caelum.tubaina.parser

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


  }
 
  @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

Related Classes of br.com.caelum.tubaina.parser.CodeHighlightTag

Copyright © 2018 www.massapicom. 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.