Instance<DefineAlternativesView> defineAlternativesSource = mock(Instance.class);
when(defineAlternativesSource.get()).thenReturn(new DefineAlternativesView());
wfStepFactory.setDefineAlternativesSource(defineAlternativesSource);
Instance<TakeGoDecisionView> takeGoDecisionSource = mock(Instance.class);
when(takeGoDecisionSource.get()).thenReturn(new TakeGoDecisionView());
wfStepFactory.setTakeGoDecisionSource(takeGoDecisionSource);
Instance<DevelopExperimentsView> developExperimentsSource = mock(Instance.class);
when(developExperimentsSource.get()).thenReturn(new DevelopExperimentsView());
wfStepFactory.setDevelopExperimentsSource(developExperimentsSource);