dp.init();
}
public void testGetChildNode() {
// this nl should not contain any text node
NodeList nl = dp.doc.getChildNodes();
for (int i = 0; i < nl.getLength(); i++) {
assertFalse("node type can't be Text", (Node.TEXT_NODE == nl.item(i).getNodeType()));
}
}