use of ca.corefacility.bioinformatics.irida.web.controller.api.samples.RESTSampleSequenceFilesController in project irida by phac-nml.
the class SampleSequenceFilesControllerTest method setUp.
@Before
public void setUp() {
sampleService = mock(SampleService.class);
miseqRunService = mock(SequencingRunService.class);
sequencingObjectService = mock(SequencingObjectService.class);
analysisService = mock(AnalysisService.class);
controller = new RESTSampleSequenceFilesController(sampleService, miseqRunService, sequencingObjectService, analysisService);
}
Aggregations