use of com.hazelcast.simulator.probes.Probe in project hazelcast-simulator by hazelcast.
the class HdrProbeTest method testConstructor_noThroughputProbe.
@Test
public void testConstructor_noThroughputProbe() {
Probe tmpProbe = new HdrProbe(false);
assertFalse(tmpProbe.isPartOfTotalThroughput());
}
use of com.hazelcast.simulator.probes.Probe in project hazelcast-simulator by hazelcast.
the class HdrProbeTest method testConstructor_throughputProbe.
@Test
public void testConstructor_throughputProbe() {
Probe tmpProbe = new HdrProbe(true);
assertTrue(tmpProbe.isPartOfTotalThroughput());
}
Aggregations