parseAndAssertNodeCount(1);
assertType("should be Tag", Tag.class, node[0]);
Tag tag = (Tag) node[0];
assertStringEquals("tag name", "CUSTOM", tag.getTagName());
assertTrue("empty tag", tag.isEmptyXmlTag());
assertStringEquals("html", "<CUSTOM/>", tag.toHtml());
}
public void testTagWithCloseTagSymbolInAttribute() throws ParserException
{
createParser("<tag att=\"a>b\">");