use of ca.corefacility.bioinformatics.irida.web.controller.api.projects.RESTProjectSamplesController in project irida by phac-nml.
the class RESTProjectSamplesControllerTest method setUp.
@Before
public void setUp() {
projectService = mock(ProjectService.class);
sampleService = mock(SampleService.class);
controller = new RESTProjectSamplesController(projectService, sampleService);
}
Aggregations