Search in sources :

Example 1 with ICacheOperationCounter

use of com.hazelcast.simulator.tests.icache.helpers.ICacheOperationCounter in project hazelcast-simulator by hazelcast.

the class MangleICacheTest method globalVerify.

@Verify
public void globalVerify() {
    ICacheOperationCounter total = new ICacheOperationCounter();
    for (ICacheOperationCounter counter : results) {
        total.add(counter);
    }
    logger.info(name + ": " + total + " from " + results.size() + " worker threads");
}
Also used : ICacheOperationCounter(com.hazelcast.simulator.tests.icache.helpers.ICacheOperationCounter) Verify(com.hazelcast.simulator.test.annotations.Verify)

Aggregations

Verify (com.hazelcast.simulator.test.annotations.Verify)1 ICacheOperationCounter (com.hazelcast.simulator.tests.icache.helpers.ICacheOperationCounter)1