Runs the test case.
Document doc;
NodeList addressList;
Node testNode;
NamedNodeMap attributes;
Attr streetAttr;
String value;
doc = (Document) load("staff", false);
addressList = doc.getElementsByTagName("address");
testNode = addressList.item(0);
attributes = testNode.getAttributes();
streetAttr = (Attr) attributes.getNamedItem("street");
value = streetAttr.getNodeValue();
assertEquals("attrDefaultValueAssert", "Yes", value);