throws ParsingException, IOException, SAXException {
String data = "<root xmlns='http://www.example.org'> <a> <b/> </a> </root>";
Document doc = builder.build(data, null);
XMLPrefixMapCounter handler = new XMLPrefixMapCounter();
SAXConverter converter = new SAXConverter(handler);
converter.convert(doc);
assertEquals(1, handler.getStarts());
assertEquals(1, handler.getEnds());
}