@Test
public void testFetchedEqualsPut() throws Exception {
K key = getKey();
IStore<K, V> store = getStore();
VectorClock clock = getClock(1, 1, 2, 3, 3, 4);
V value = getValue();
assertEquals("Store not empty at start!", 0, store.get(key).size());
Versioned<V> versioned = new Versioned<V>(value, clock);
store.put(key, versioned);
List<Versioned<V>> found = store.get(key);