TransportFactoryManagerImpl transportFactoryManagerImpl = createTransportFactory();
Map<String, Object> properties = new WeakHashMap<String, Object>();
properties.put("celtix.TRANSPORTFACTORYMANAGER", transportFactoryManagerImpl);
Bus bus = Bus.init(new String[0], properties);
TransportFactoryManager transportFactoryManagerImplNew = bus.getTransportFactoryManager();
//Verify that the TransportFactoryManager is the one we plugged into bus previously,
//other than the one created inside Bus
assertEquals("wsdlManager is the one we expected", transportFactoryManagerImpl,
transportFactoryManagerImplNew);