Runs the test case.
Document doc;
NodeList elementList;
Node testEmployee;
NamedNodeMap attributes;
Node child;
String name;
doc = (Document) load("staff", true);
elementList = doc.getElementsByTagName("address");
testEmployee = elementList.item(1);
attributes = testEmployee.getAttributes();
child = attributes.item(1);
name = child.getNodeName();
assertTrue("namednodemapReturnLastItemAssert",
(equals("domestic", name) | equals("street", name))
);