* Tests using a type test for nodes. This should return all nodes.
*/
@Test
public void testIterateWithNodeType()
{
NodeTypeTest test = new NodeTypeTest(Compiler.NODE_TYPE_NODE);
ConfigurationNodeIteratorChildren<ImmutableNode> it =
new ConfigurationNodeIteratorChildren<ImmutableNode>(
rootPointer, test, false, null);
assertEquals("Node type not evaluated", CHILD_COUNT, iteratorSize(it));
}