use of com.hazelcast.internal.util.hashslot.HashSlotCursor8byteKey in project hazelcast by hazelcast.
the class HashSlotArray8byteKeyImplTest method testCursor_valueAddress.
@Test
public void testCursor_valueAddress() {
final long valueAddress = insert(random.nextLong());
HashSlotCursor8byteKey cursor = hsa.cursor();
cursor.advance();
assertEquals(valueAddress, cursor.valueAddress());
}
Aggregations