InMemorySagaRepository sagaRepository = new InMemorySagaRepository();
sagaManager = new AnnotatedSagaManager(sagaRepository, genericSagaFactory, sagaType);
sagaManager.setSuppressExceptions(false);
registeredResources.add(eventBus);
commandBus = new RecordingCommandBus();
registeredResources.add(commandBus);
registeredResources.add(eventScheduler);
registeredResources.add(new DefaultCommandGateway(commandBus));
fixtureExecutionResult = new FixtureExecutionResultImpl(sagaRepository, eventScheduler, eventBus, commandBus,
sagaType);