parseAndAssertNodeCount(6);
assertTrue(node[4] instanceof BodyTag);
// check the body node
BodyTag bodyTag = (BodyTag) node[4];
assertEquals("Body", "This is a body tag", bodyTag.getBody());
assertEquals("Body", "<BODY>This is a body tag</BODY>", bodyTag.toHtml());
assertEquals("Body Scanner", bodyScanner, bodyTag.getThisScanner());
}
public void testBodywithJsp() throws ParserException {
createParser("<html><head><title>Test 1</title></head><body><%=BodyValue%></body></html>");