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);
Instance<RunExperimentsView> runExperimentsSource = mock(Instance.class);
when(runExperimentsSource.get()).thenReturn(new RunExperimentsView());
wfStepFactory.setRunExperimentsSource(runExperimentsSource);