use of org.apache.hadoop.hbase.CellComparator in project hbase by apache.
the class TestStripeStoreEngine method createEngine.
private static TestStoreEngine createEngine(Configuration conf) throws Exception {
Store store = mock(Store.class);
CellComparator kvComparator = mock(CellComparator.class);
return (TestStoreEngine) StoreEngine.create(store, conf, kvComparator);
}
Aggregations