Instance<DefineBasisView> defineBasisSource = mock(Instance.class);
when(defineBasisSource.get()).thenReturn(new DefineBasisView());
wfStepFactory.setDefineBasisSource(defineBasisSource);
Instance<DefineSampleRecordsView> defineSampleRecordsSource = mock(Instance.class);
when(defineSampleRecordsSource.get()).thenReturn(new DefineSampleRecordsView());
wfStepFactory.setDefineSampleRecordsSource(defineSampleRecordsSource);
Instance<IdentifyRequirementsView> identifyRequirementsSource = mock(Instance.class);
when(identifyRequirementsSource.get()).thenReturn(new IdentifyRequirementsView());
wfStepFactory.setIdentifyRequirementsSource(identifyRequirementsSource);