public void testQNameConverter1() throws Exception {
URL srcXml = classLoader.getResource("geronimo/qname1-pre.xml");
URL expectedOutputXml = classLoader.getResource("geronimo/qname1-post.xml");
XmlObject xmlObject = XmlObject.Factory.parse(srcXml);
ElementConverter elementConverter = new QNameConverter("import", "http://geronimo.apache.org/xml/ns/deployment-1.0", "parent");
XmlCursor cursor = xmlObject.newCursor();
XmlCursor end = cursor.newCursor();
try {
elementConverter.convertElement(cursor, end);
// log.debug(xmlObject.toString());
XmlObject expected = XmlObject.Factory.parse(expectedOutputXml);