use of com.twitter.common.application.modules.LocalServiceRegistry in project commons by twitter.
the class ServerSetModuleTest method mySetUp.
@Before
public void mySetUp() {
control = EasyMock.createControl();
serverSet = control.createMock(ServerSet.class);
shutdownRegistry = new ShutdownRegistryImpl();
zooKeeperClient = createZkClient();
Set<ServiceRunner> localServices = ImmutableSet.of();
localServiceRegistry = new LocalServiceRegistry(Providers.of(localServices), shutdownRegistry);
}
Aggregations