true, 10, 10000, 200));
}
private void testObjectStore(ListableObjectStore<String> store) throws ObjectStoreException
{
ObjectStoreException e = null;
store.store("key1", "value1");
assertEquals("value1", store.retrieve("key1"));
assertTrue(store.contains("key1"));
store.clear();