Runs the test case.
Document doc;
Attr attribute1;
Attr attribute2;
String name;
String nodeName;
String nodeValue;
String prefix;
String namespaceURI;
doc = (Document) load("staffNS", false);
attribute1 = doc.createAttributeNS("http://www.w3.org/XML/1998/namespace", "xml:xml");
name = attribute1.getName();
nodeName = attribute1.getNodeName();
nodeValue = attribute1.getNodeValue();
prefix = attribute1.getPrefix();
namespaceURI = attribute1.getNamespaceURI();
assertEquals("documentcreateattributeNS02_att1_name", "xml:xml", name);
assertEquals("documentcreateattributeNS02_att1_nodeName", "xml:xml", nodeName);
assertEquals("documentcreateattributeNS02_att1_nodeValue", "", nodeValue);
assertEquals("documentcreateattributeNS02_att1_prefix", "xml", prefix);
assertEquals("documentcreateattributeNS02_att1_namespaceURI", "http://www.w3.org/XML/1998/namespace", namespaceURI);
attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns");
name = attribute2.getName();
nodeName = attribute2.getNodeName();
nodeValue = attribute2.getNodeValue();
prefix = attribute2.getPrefix();
namespaceURI = attribute2.getNamespaceURI();
assertEquals("documentcreateattributeNS02_att2_name", "xmlns", name);
assertEquals("documentcreateattributeNS02_att2_nodeName", "xmlns", nodeName);
assertEquals("documentcreateattributeNS02_att2_nodeValue", "", nodeValue);
assertEquals("documentcreateattributeNS02_att2_namespaceURI", "http://www.w3.org/2000/xmlns/", namespaceURI);