store.put(aKey, new Versioned<byte[]>(getValue(), clock), aTransform);
List<Versioned<byte[]>> found = store.get(aKey, aTransform);
assertEquals("Invalid number of items found.", 1, found.size());
assertEquals("Version not incremented properly",
Occurred.BEFORE,
copy.compare(found.get(0).getVersion()));
}
@Test
public void testPutIncrementsVersionZZZ() throws Exception {
Store<ByteArray, byte[], byte[]> store = getZonedStore();