final long startTime = _date(2012, 6, 6);
StorableStore store = createStore("bdb-small-simple", startTime);
_verifyEntryCount(0L, store);
_verifyIndexCount(0L, store);
final StorableKey KEY1 = storableKey("data/entry/1");
final String SMALL_STRING = "Some data that we want to store -- small, gets inlined...";
final byte[] SMALL_DATA = SMALL_STRING.getBytes("UTF-8");
final byte[] CUSTOM_METADATA_IN = new byte[] { 1, 2, 3 };
assertNull(store.findEntry(StoreOperationSource.REQUEST, null, KEY1));