use of ca.corefacility.bioinformatics.irida.ria.web.files.ReferenceFileController in project irida by phac-nml.
the class ReferenceFileControllerTest method setUp.
@Before
public void setUp() {
projectService = mock(ProjectService.class);
referenceFileService = mock(ReferenceFileService.class);
messageSource = mock(MessageSource.class);
// Set up the reference file
Path path = Paths.get(FILE_PATH);
ReferenceFile file = new ReferenceFile(path);
when(referenceFileService.read(FILE_ID)).thenReturn(file);
controller = new ReferenceFileController(projectService, referenceFileService, messageSource);
}
Aggregations