//wsdlURL = wsdlDefinition.getDocumentBaseURI();
WADL2UDDI wadl2UDDI = new WADL2UDDI(null, new URLLocalizerDefaultImpl(), properties);
Assert.assertNotNull(wadl2UDDI);
BusinessService businessServices = wadl2UDDI.createBusinessService(new QName("CXF.Sample.WADL.namespace", "Servicename"), app);
Assert.assertNotNull(businessServices);
Assert.assertNotNull(businessServices.getBindingTemplates());
Assert.assertNotNull(businessServices.getName().get(0));
Assert.assertNotNull(businessServices.getBindingTemplates().getBindingTemplate().get(0));
Assert.assertNotNull(businessServices.getBindingTemplates().getBindingTemplate().get(0).getAccessPoint());
Assert.assertNotNull(businessServices.getBindingTemplates().getBindingTemplate().get(0).getAccessPoint().getValue());
PrintUDDI<BusinessService> servicePrinter = new PrintUDDI<BusinessService>();