Runs the test case.
Document doc;
NodeList addressList;
Node testNode;
NamedNodeMap attributes;
Attr streetAttr;
String strong1;
String strong2;
doc = (Document) load("hc_staff", false);
addressList = doc.getElementsByTagName("acronym");
testNode = addressList.item(1);
attributes = testNode.getAttributes();
streetAttr = (Attr) attributes.getNamedItem("class");
strong1 = streetAttr.getNodeName();
strong2 = streetAttr.getName();
assertEqualsAutoCase("attribute", "nodeName", "class", strong1);
assertEqualsAutoCase("attribute", "name", "class", strong2);