use of ca.corefacility.bioinformatics.irida.ria.web.projects.ProjectEventsController in project irida by phac-nml.
the class ProjectEventsControllerTest method setup.
@Before
public void setup() {
eventService = mock(ProjectEventService.class);
projectService = mock(ProjectService.class);
userService = mock(UserService.class);
controller = new ProjectEventsController(eventService, projectService, userService, messageSource);
}
Aggregations