Search in sources :

Example 1 with PredicateOperationCounter

use of com.hazelcast.simulator.tests.map.helpers.PredicateOperationCounter in project hazelcast-simulator by hazelcast.

the class MapPredicateTest method globalVerify.

@Verify
public void globalVerify() {
    PredicateOperationCounter total = new PredicateOperationCounter();
    for (PredicateOperationCounter operationCounter : operationCounterList) {
        total.add(operationCounter);
    }
    logger.info(format("Operation counters from %s: %s", name, total));
}
Also used : PredicateOperationCounter(com.hazelcast.simulator.tests.map.helpers.PredicateOperationCounter) Verify(com.hazelcast.simulator.test.annotations.Verify)

Aggregations

Verify (com.hazelcast.simulator.test.annotations.Verify)1 PredicateOperationCounter (com.hazelcast.simulator.tests.map.helpers.PredicateOperationCounter)1