use of ca.corefacility.bioinformatics.irida.ria.web.projects.ProjectSamplesController in project irida by phac-nml.
the class ProjectSamplesControllerTest method setUp.
@Before
public void setUp() {
projectService = mock(ProjectService.class);
sampleService = mock(SampleService.class);
sequencingObjectService = mock(SequencingObjectService.class);
projectUtils = mock(ProjectControllerUtils.class);
messageSource = mock(MessageSource.class);
controller = new ProjectSamplesController(projectService, sampleService, sequencingObjectService, projectUtils, messageSource);
user.setId(1L);
mockSidebarInfo();
}
Aggregations