scope.onEvent(new CompositeStart(this, null));
Object instance = context.getServiceInstance();
assertSame(instance, context.getServiceInstance());
scope.onEvent(new CompositeStop(this, null));
scope.stop();
context.stop();
scope.start();
scope.onEvent(new CompositeStart(this, null));
context.start();
assertNotSame(instance, context.getServiceInstance());
scope.onEvent(new CompositeStop(this, null));
scope.stop();
context.stop();
}