use of com.hedera.services.bdd.spec.HapiPropertySource in project hedera-services by hashgraph.
the class ConsensusQueriesStressTests method configureFromCi.
private void configureFromCi(HapiApiSpec spec) {
HapiPropertySource ciProps = spec.setup().ciPropertiesMap();
configure("duration", duration::set, ciProps, ciProps::getLong);
configure("unit", unit::set, ciProps, ciProps::getTimeUnit);
configure("maxOpsPerSec", maxOpsPerSec::set, ciProps, ciProps::getInteger);
}
use of com.hedera.services.bdd.spec.HapiPropertySource in project hedera-services by hashgraph.
the class CryptoQueriesStressTests method configureFromCi.
private void configureFromCi(HapiApiSpec spec) {
HapiPropertySource ciProps = spec.setup().ciPropertiesMap();
configure("duration", duration::set, ciProps, ciProps::getLong);
configure("unit", unit::set, ciProps, ciProps::getTimeUnit);
configure("maxOpsPerSec", maxOpsPerSec::set, ciProps, ciProps::getInteger);
}
use of com.hedera.services.bdd.spec.HapiPropertySource in project hedera-services by hashgraph.
the class ContractQueriesStressTests method configureFromCi.
private void configureFromCi(HapiApiSpec spec) {
HapiPropertySource ciProps = spec.setup().ciPropertiesMap();
configure("duration", duration::set, ciProps, ciProps::getLong);
configure("unit", unit::set, ciProps, ciProps::getTimeUnit);
configure("maxOpsPerSec", maxOpsPerSec::set, ciProps, ciProps::getInteger);
}
use of com.hedera.services.bdd.spec.HapiPropertySource in project hedera-services by hashgraph.
the class FileQueriesStressTests method configureFromCi.
private void configureFromCi(HapiApiSpec spec) {
HapiPropertySource ciProps = spec.setup().ciPropertiesMap();
configure("duration", duration::set, ciProps, ciProps::getLong);
configure("unit", unit::set, ciProps, ciProps::getTimeUnit);
configure("maxOpsPerSec", maxOpsPerSec::set, ciProps, ciProps::getInteger);
}
Aggregations