getBundleContext().registerService(clazzes, logService, properties);
LogEvent e = new LogEvent();
e.setName("42");
ExampleDomainEvents exampleEvents = getOsgiService(ExampleDomainEvents.class);
// this should be routed through the domain, which forwards it to the workflow service
exampleEvents.raiseEvent(e);
assertThat(logService.isWasCalled(), is(true));
}