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