Runs the test case.
String localName = "domestic";
String namespaceURI = "http://www.usa.com";
Document doc;
NodeList elementList;
Element testNode;
boolean state;
doc = (Document) load("staffNS", false);
elementList = doc.getElementsByTagName("address");
testNode = (Element) elementList.item(0);
state = testNode.hasAttributeNS(namespaceURI, localName);
assertTrue("hasAttribute", state);