Runs the test case.
Document doc;
NodeList elementList;
Node commentNode;
int nodeType;
String commentName;
String commentNodeName;
doc = (Document) load("hc_staff", false);
elementList = doc.getChildNodes();
for (int indexN10044 = 0; indexN10044 < elementList.getLength(); indexN10044++) {
commentNode = (Node) elementList.item(indexN10044);
nodeType = (int) commentNode.getNodeType();
if (equals(8, nodeType)) {
commentNodeName = commentNode.getNodeName();
assertEquals("existingNodeName", "#comment", commentNodeName);
}
}
commentNode = doc.createComment("This is a comment");
commentNodeName = commentNode.getNodeName();
assertEquals("createdNodeName", "#comment", commentNodeName);