parser.addScanner(new AnotherScanner(false));
parseAndAssertNodeCount(1);
assertType("root node",CustomTag.class, node[0]);
CustomTag root = (CustomTag)node[0];
assertNodeCount("child count",2,root.getChildrenAsNodeArray());
Node child = root.childAt(0);
assertType("child",CustomTag.class,child);
CustomTag customChild = (CustomTag)child;
assertNodeCount("grand child count",1,customChild.getChildrenAsNodeArray());
Node grandchild = customChild.childAt(0);
assertType("grandchild",AnotherTag.class,grandchild);
}