Runs the test case.
Document doc;
NodeList childList;
Node childNode;
NamedNodeMap attrList;
int nodeType;
doc = (Document) load("staff", false);
childList = doc.getChildNodes();
for (int indexN10043 = 0; indexN10043 < childList.getLength(); indexN10043++) {
childNode = (Node) childList.item(indexN10043);
nodeType = (int) childNode.getNodeType();
if (equals(8, nodeType)) {
attrList = childNode.getAttributes();
assertNull("attributesNull", attrList);
}
}
childNode = doc.createComment("This is a comment");
attrList = childNode.getAttributes();
assertNull("createdAttributesNull", attrList);