Search in sources :

Example 1 with EntryListenerImpl

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

the class MapEntryListenerTest method globalVerify.

@Verify
public void globalVerify() {
    for (int i = 0; i < listeners.size() - 1; i++) {
        EntryListenerImpl a = listeners.get(i);
        EntryListenerImpl b = listeners.get(i + 1);
        assertEquals(name + ": not same amount of event in all listeners", a, b);
    }
}
Also used : EntryListenerImpl(com.hazelcast.simulator.tests.map.helpers.EntryListenerImpl) Verify(com.hazelcast.simulator.test.annotations.Verify)

Aggregations

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