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