use of ca.corefacility.bioinformatics.irida.ria.web.oauth.OltuAuthorizationController in project irida by phac-nml.
the class OltuAuthorizationControllerTest method setUp.
@Before
public void setUp() {
apiService = mock(RemoteAPIService.class);
tokenService = mock(RemoteAPITokenService.class);
oauthClient = mock(OAuthClient.class);
controller = new OltuAuthorizationController(tokenService, apiService);
controller.setServerBase(serverBase);
}
Aggregations