foo.addText("bla").addAttribute("foo", "bar");
assertEquals("<foo foo=\"bar\">bla</foo>", foo.asXML());
foo = DocumentFactory.getInstance().createElement("foo");
foo.addAttribute("foo", "bar").addText("bla");
assertEquals("<foo foo=\"bar\">bla</foo>", foo.asXML());
}
public void testGetNamespacesForURI() throws Exception {
String xml = "<schema targetNamespace='http://SharedTest.org/xsd' "
+ " xmlns='http://www.w3.org/2001/XMLSchema' "