use of org.janusgraph.diskstorage.keycolumnvalue.StoreManager in project janusgraph by JanusGraph.
the class KeyValueStoreTest method setUp.
@Before
public void setUp() throws Exception {
StoreManager m = openStorageManager();
m.clearStorage();
m.close();
open();
}
use of org.janusgraph.diskstorage.keycolumnvalue.StoreManager in project janusgraph by JanusGraph.
the class KCVSLogTest method setup.
@Override
public void setup() throws Exception {
StoreManager m = openStorageManager();
m.clearStorage();
m.close();
super.setup();
}
Aggregations