Runs the test case.
Document doc;
NodeList elementList;
Node testEmployee;
NamedNodeMap attributes;
Attr domesticAttr;
String attrName;
doc = (Document) load("hc_staff", false);
elementList = doc.getElementsByTagName("acronym");
testEmployee = elementList.item(1);
attributes = testEmployee.getAttributes();
domesticAttr = (Attr) attributes.getNamedItem("title");
attrName = domesticAttr.getNodeName();
assertEqualsAutoCase("attribute", "nodeName", "title", attrName);