assertEquals("ending loc",8,customTag.getEndPosition ());
assertEquals("starting line position",0,customTag.getStartingLineNumber());
assertEquals("ending line position",0,customTag.getEndingLineNumber());
AnotherTag anotherTag = (AnotherTag)customTag.childAt(0);
assertEquals("anotherTag child count",1,anotherTag.getChildCount());
Text stringNode = (Text)anotherTag.childAt(0);
assertStringEquals("anotherTag child text","something",stringNode.toPlainTextString());
assertStringEquals(
"first custom tag html",
"<custom><another>something</another></custom>",
customTag.toHtml()
);