Account account = restContext.getApi().getAccountApi().getMyAccount();
assert account.getOrgId() != null;
}
public void testGetDataCenterWithLimits() {
Account account = restContext.getApi().getAccountApi().getMyAccount();
assert account.getOrgId() != null;
DataCentersList dataCentersList = restContext.getApi().getAccountApi().getDataCentersWithLimits(account.getOrgId());
assert dataCentersList != null;
}