sect.newParagraph().newText("There must be a table below where the "
+ "second cell contains a bulleted list mixed with normal paragraphs");
final RtfTable tbl = sect.newTable(new DummyTableColumnsInfo());
final RtfTableRow row = tbl.newTableRow();
row.newTableCell(RtfTableCell.DEFAULT_CELL_WIDTH).newParagraph().newText("cell A, simple");
final RtfTableCell c = row.newTableCell(RtfTableCell.DEFAULT_CELL_WIDTH);
c.newParagraph().newText("cell B, contains this paragraph followed by "
+ "a list and another paragraph");
fillList(c.newList(null), 1, 3);