Runs the test case.
Document doc;
NodeList elementList;
Node testEmployee;
String name;
doc = (Document) load("staff", false);
elementList = doc.getElementsByTagName("position");
testEmployee = elementList.item(1);
name = testEmployee.getNodeName();
assertEquals("nodename", "position", name);
name = ((Element) /*Node */testEmployee).getTagName();
assertEquals("tagname", "position", name);