Runs the test case.
Document doc;
Attr newAttrNode;
String attrValue;
String attrName;
int attrType;
doc = (Document) load("hc_staff", true);
newAttrNode = doc.createAttribute("title");
attrValue = newAttrNode.getNodeValue();
assertEquals("value", "", attrValue);
attrName = newAttrNode.getNodeName();
assertEqualsAutoCase("attribute", "name", "title", attrName);
attrType = (int) newAttrNode.getNodeType();
assertEquals("type", 2, attrType);