Runs the test case.
Document doc;
Element element;
boolean state;
Attr attribute;
doc = (Document) load("staff", builder);
element = doc.createElementNS("http://www.w3.org/DOM", "elem");
attribute = doc.createAttributeNS(
"http://www.w3.org/DOM/Test/createAttributeNS", "attr");
element.setAttributeNodeNS(attribute);
element.removeAttributeNS(
"http://www.w3.org/DOM/Test/createAttributeNS", "attr");
state = element.hasAttributeNS(
"http://www.w3.org/DOM/Test/createAttributeNS", "attr");
assertFalse("elementremoveattributens01", state);