assertTokenType(DTD, sr.next());
DTDInfo info = sr.getDTDInfo();
assertNotNull(info);
DTDValidationSchema dtd = info.getProcessedDTDSchema();
assertNotNull(dtd);
// 4 entities, but one is parameter entity...
assertEquals(3, dtd.getEntityCount());
// 2 notations:
assertEquals(2, dtd.getNotationCount());
// Also, don't want a creepy exception afterwards...
assertTokenType(START_ELEMENT, sr.next());
}