Runs the test case.
Document doc;
NodeList elementList;
Element testEmployee;
Attr domesticAttr;
String nodeName;
doc = (Document) load("hc_staff", false);
elementList = doc.getElementsByTagName("acronym");
testEmployee = (Element) elementList.item(0);
domesticAttr = testEmployee.getAttributeNode("title");
nodeName = domesticAttr.getNodeName();
assertEqualsAutoCase("attribute", "nodeName", "title", nodeName);