Runs the test case.
Document doc;
Element newElement;
String newElementName;
int newElementType;
String newElementValue;
doc = (Document) load("hc_staff", true);
newElement = doc.createElement("acronym");
newElementName = newElement.getNodeName();
assertEqualsAutoCase("element", "strong", "acronym", newElementName);
newElementType = (int) newElement.getNodeType();
assertEquals("type", 1, newElementType);
newElementValue = newElement.getNodeValue();
assertNull("valueInitiallyNull", newElementValue);