assertEquals("b", simpleTable.parts.more.parts.body);
}
@Test
public void testInsertRowAfter() {
Parse errorCell = new Parse("td", "error", null, null);
Parse row = new Parse("tr", null, errorCell, null);
fixture.insertRowAfter(simpleTable.parts.more, row);
assertEquals("<tr>", simpleTable.parts.more.more.tag);
assertEquals("error", simpleTable.parts.more.more.parts.body);
}