Runs the test case.
Document doc;
NodeList elementList;
Node employeeNode;
NodeList childList;
Node createdNode;
Node lchild;
String childName;
Node appendedChild;
doc = (Document) load("hc_staff", true);
elementList = doc.getElementsByTagName("p");
employeeNode = elementList.item(1);
childList = employeeNode.getChildNodes();
createdNode = doc.createElement("br");
appendedChild = employeeNode.appendChild(createdNode);
lchild = employeeNode.getLastChild();
childName = lchild.getNodeName();
assertEqualsAutoCase("element", "nodeName", "br", childName);