assertEquals(StaticDataStore.class, store.getClass());
store.close();
}
public void testDynamicDataStoreFactory() throws IOException {
DataStoreFactory storeFactory = new DynamicDataStoreFactory();
DataStore<byte[], byte[]> store = storeFactory.create(_config);
assertEquals(DynamicDataStore.class, store.getClass());
store.close();
}