}
}
public void testRegister() throws Exception {
OperationType operationType = OperationType.BLIP_CONTINUE_THREAD;
DoNothingService doNothingService = DoNothingService.create();
operationAccessor.register(operationType, doNothingService);
OperationService service = operationAccessor.getServiceFor(operationType);
assertEquals(doNothingService, service);
}