Runs the test case.
Document doc;
NodeList addressList;
Node testNode;
NamedNodeMap attributes;
Attr domesticAttr;
boolean state;
doc = (Document) load("hc_staff", false);
addressList = doc.getElementsByTagName("acronym");
testNode = addressList.item(0);
attributes = testNode.getAttributes();
domesticAttr = (Attr) attributes.getNamedItem("title");
state = domesticAttr.getSpecified();
assertTrue("acronymTitleSpecified", state);