Runs the test case.
Document doc;
DocumentType docType;
DOMImplementation domImpl;
String publicId;
String nullNS = null;
doc = (Document) load("staffNS", false);
domImpl = doc.getImplementation();
docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
publicId = docType.getPublicId();
assertEquals("documenttypepublicid01", "PUB", publicId);