+ " <web-uri>webmodule3.jar</web-uri>"
+ " <context-root>/webmodule3</context-root>"
+ " </web>"
+ " </module>"
+ "</application>";
ApplicationXml applicationXml = ApplicationXmlIo.parseApplicationXml(new ByteArrayInputStream(xml.getBytes()),null);
Iterator webUris = applicationXml.getWebModuleUris();
assertEquals("webmodule1.jar", webUris.next());
assertEquals("webmodule2.jar", webUris.next());
assertEquals("webmodule3.jar", webUris.next());
assertTrue(!webUris.hasNext());
}