Runs the test case.
Document doc;
Element element;
Attr attribute;
String attrName;
String attrValue;
doc = (Document) load("staff", true);
element = doc.createElementNS("http://www.w3.org/DOM", "dom:elem");
element.setAttributeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr", "value");
attribute = element.getAttributeNodeNS("http://www.w3.org/DOM/Test/setAttributeNS", "attr");
attrName = attribute.getNodeName();
attrValue = attribute.getNodeValue();
assertEquals("elementsetattributens01_attrName", "attr", attrName);
assertEquals("elementsetattributens01_attrValue", "value", attrValue);