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