Assert.assertEquals("<table>texto da tabela</table>", result);
}
@Test
public void testTableWithTitleAndWithoutBorder() {
TableChunk chunk = new TableChunk("noborder \"titulo\"", text("texto da tabela"));
String result = getContent(chunk);
Assert.assertEquals("<h3>titulo</h3><table>texto da tabela</table>", result);
}