2425262728293031
"Quarta linha", output); } @Test public void testHighlightWithNullParams() throws Exception { String output = new CodeHighlightTag().parseHtml("", null); Assert.assertEquals("", output); }
3132333435363738
} @Test public void testInvalidLineNumbers() throws Exception { String input = "Só uma linha"; String output = new CodeHighlightTag().parseHtml(input, Arrays.asList(23)); Assert.assertEquals(input, output); }