Runs the test case.
Document doc;
DocumentType docType;
DOMImplementation domImpl;
String internal;
String nullNS = null;
doc = (Document) load("staffNS", false);
domImpl = doc.getImplementation();
docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
internal = docType.getInternalSubset();
assertNull("internalSubsetNull", internal);