@After
 public void tearDown() throws Exception {
   CorrelationDataHolder.clear();
 }
 @Before
 public void setUp() throws Exception {
   CorrelationDataHolder.clear();
   sagaRepository = spy(new InMemorySagaRepository());
   manager = new AnnotatedSagaManager(sagaRepository, new SimpleEventBus(), MyTestSaga.class);
 }