Runs the test case.
Document doc;
NodeList elementList;
Element testNode;
boolean state;
doc = (Document) load("staff", false);
elementList = doc.getElementsByTagName("address");
testNode = (Element) elementList.item(4);
state = testNode.hasAttribute("domestic");
assertFalse("throw_False", state);