parseAndAssertNodeCount(2);
// The node should be a tag
assertTrue("Node should be a Tag",node[1] instanceof Tag);
Tag endTag = (Tag)node[1];
assertTrue("Node should be an end Tag",endTag.isEndTag ());
assertEquals("Raw String","</HTML>",endTag.toHtml());
}
public void testEndTagFind() throws ParserException {
String testHtml =
"<SCRIPT>document.write(d+\".com\")</SCRIPT><BR>";