module.toString();
new RegistryInfrastructureImpl(null, Locale.ENGLISH).toString();
new InterceptorStackImpl(null, mockServicePoint, null).toString();
ModuleDefinition md = new ModuleDefinitionImpl("module", null, null, null);
ServicePointDefinitionImpl spd = new ServicePointDefinitionImpl(md, "service", null,
Visibility.PUBLIC, Runnable.class.getName());
ImplementationDefinition sid = new ImplementationDefinitionImpl(md,
null, null, ServiceModel.PRIMITIVE, true);
spd.addImplementation(sid);
new ServicePointImpl(module, spd).toString();
}