use of org.hisp.dhis.actions.UaaActions in project dhis2-core by dhis2.
the class LoginTests method preconditions.
@BeforeAll
public void preconditions() {
oauth2Clients = new RestApiActions("/oAuth2Clients");
uaaActions = new UaaActions();
loginActions = new LoginActions();
userActions = new UserActions();
loginActions.loginAsSuperUser();
addOAuthClient();
userActions.addUser(userName, password);
}
Aggregations