Runs the test case.
Document doc;
Element element;
NodeList elementList;
boolean hasAttributes;
doc = (Document) load("staffNS", false);
elementList = doc.getElementsByTagName("emp:employee");
element = (Element) elementList.item(0);
assertNotNull("empEmployeeNotNull", element);
hasAttributes = element.hasAttributes();
assertTrue("hasAttributes", hasAttributes);