assertStringEquals("first custom tag html", "<CUSTOM></CUSTOM>", customTag.toHtml());
customTag = (CustomTag) node[1];
assertStringEquals("first custom tag html", "<CUSTOM>something</CUSTOM>", customTag.toHtml());
EndTag endTag = (EndTag) node[2];
assertStringEquals("first custom tag html", "</CUSTOM>", endTag.toHtml());
}
public void testParentConnections() throws ParserException {
createParser("<custom>" + "<custom>something</custom>" + "</custom>");
parser.addScanner(new CustomScanner(false));