Runs the test case.
String namespaceURI = "http://www.example.com/";
String qualifiedName;
Document doc;
boolean done;
Element newElement;
String charact;
doc = (Document) load("hc_staff", true);
{
boolean success = false;
try {
newElement = doc.createElementNS(namespaceURI, "");
} catch (DOMException ex) {
success = (ex.code == DOMException.INVALID_CHARACTER_ERR);
}
assertTrue("throw_INVALID_CHARACTER_ERR", success);
}