use of org.hisp.dhis.actions.SystemActions in project dhis2-core by dhis2.
the class MetadataImportTest method before.
@BeforeAll
public void before() {
metadataActions = new MetadataActions();
systemActions = new SystemActions();
new LoginActions().loginAsSuperUser();
}
use of org.hisp.dhis.actions.SystemActions in project dhis2-core by dhis2.
the class DataImportTest method before.
@BeforeAll
public void before() {
dataValueSetActions = new DataValueSetActions();
metadataActions = new MetadataActions();
dataValueActions = new DataValueActions();
systemActions = new SystemActions();
new LoginActions().loginAsSuperUser();
metadataActions.importMetadata(new File("src/test/resources/aggregate/metadata.json"), "async=false").validate().statusCode(200);
}
use of org.hisp.dhis.actions.SystemActions in project dhis2-core by dhis2.
the class EventImportTests method before.
@BeforeAll
public void before() {
eventActions = new EventActions();
systemActions = new SystemActions();
new LoginActions().loginAsSuperUser();
}
Aggregations