Runs the test case.
Document doc;
NodeList childNodes;
ProcessingInstruction piNode;
String target;
doc = (Document) load("staff", false);
childNodes = doc.getChildNodes();
piNode = (ProcessingInstruction) childNodes.item(0);
target = piNode.getTarget();
assertEquals("processinginstructionGetTargetAssert", "TEST-STYLE", target);