Runs the test case.
Document doc;
DocumentType docType;
NamedNodeMap notations;
Node notationNode;
NamedNodeMap attrList;
doc = (Document) load("staff", false);
docType = doc.getDoctype();
assertNotNull("docTypeNotNull", docType);
notations = docType.getNotations();
assertNotNull("notationsNotNull", notations);
notationNode = notations.getNamedItem("notation1");
assertNotNull("notationNotNull", notationNode);
attrList = notationNode.getAttributes();
assertNull("nodeNotationNodeAttributesAssert1", attrList);