/**
* Tests the xml artifact generation against the "full" API.
*/
public void testAgainstFullAPI() throws Exception {
XMLDeploymentModule xmlModule = new XMLDeploymentModule();
SchemaConfig schemaConfig = new SchemaConfig();
schemaConfig.setNamespace(CITE_NAMESPACE);
schemaConfig.setFile("cite.xsd");
xmlModule.addSchemaConfig(schemaConfig);
schemaConfig = new SchemaConfig();
schemaConfig.setNamespace(DATA_NAMESPACE);
schemaConfig.setFile("data.xsd");
xmlModule.addSchemaConfig(schemaConfig);
WsdlConfig wsdlConfig = new WsdlConfig();
wsdlConfig.setNamespace(FULL_NAMESPACE);
wsdlConfig.setFile("full.wsdl");
xmlModule.addWsdlConfig(wsdlConfig);