super.setUp();
ModuleDefinitionImpl module = createModuleDefinition("hivemind.tests.serviceByInterface");
ServicePointDefinitionImpl sp1 = createServicePointDefinition(module, "uniqueService", IUniqueService.class);
ImplementationDefinition impl1 = createServiceImplementationDefinition(module, UniqueServiceImpl.class);
sp1.addImplementation(impl1);
module.addServicePoint(sp1);
ServicePointDefinitionImpl sp2 = createServicePointDefinition(module, "multipleServiceOne", IMultipleService.class);
ImplementationDefinition impl2 = createServiceImplementationDefinition(module, MultipleServiceImpl.class);
sp2.addImplementation(impl2);
module.addServicePoint(sp2);
ServicePointDefinitionImpl sp3 = createServicePointDefinition(module, "multipleServiceTwo", IMultipleService.class);