Instance<AnalyseResultsView> analyseResultsSource = mock(Instance.class);
when(analyseResultsSource.get()).thenReturn(new AnalyseResultsView());
wfStepFactory.setAnalyseResultsSource(analyseResultsSource);
Instance<CreateExecutablePlanView> createExecutablePlanSource = mock(Instance.class);
when(createExecutablePlanSource.get()).thenReturn(new CreateExecutablePlanView());
wfStepFactory.setCreateExecutablePlanSource(createExecutablePlanSource);
Instance<DefinePreservationPlanView> definePreservationPlanSource = mock(Instance.class);
when(definePreservationPlanSource.get()).thenReturn(new DefinePreservationPlanView());
wfStepFactory.setDefinePreservationPlanSource(definePreservationPlanSource);