Runs the test case.
Document doc;
NodeList elementList;
Node commentNode;
int nodeType;
String commentNodeName;
doc = (Document) load("staff", false);
elementList = doc.getChildNodes();
for (int indexN10040 = 0; indexN10040 < elementList.getLength(); indexN10040++) {
commentNode = (Node) elementList.item(indexN10040);
nodeType = (int) commentNode.getNodeType();
if (equals(8, nodeType)) {
commentNodeName = commentNode.getNodeName();
assertEquals("commentNodeName", "#comment", commentNodeName);
}
}