use of com.b2international.snowowl.eventbus.IEventBus in project snow-owl by b2ihealthcare.
the class EventBusHandlerRegistrationTest method test_UnregisterHandler_Registered.
@Test
public void test_UnregisterHandler_Registered() {
final IEventBus actual = bus.registerHandler(ADDRESS, noopHandler).unregisterHandler(ADDRESS, noopHandler);
assertEquals(bus, actual);
}
use of com.b2international.snowowl.eventbus.IEventBus in project snow-owl by b2ihealthcare.
the class EventBusSendTest method test_Send_No_Handler.
@Test
public void test_Send_No_Handler() {
final IEventBus actual = bus.send(ADDRESS, SEND_MESSAGE, null);
assertEquals(bus, actual);
}
Aggregations