use of com.palantir.atlasdb.transaction.service.SimpleTransactionService in project atlasdb by palantir.
the class ScrubberTest method before.
@Before
public void before() {
kvs = new InMemoryKeyValueService(false, MoreExecutors.newDirectExecutorService());
kvs.createTable(TransactionConstants.TRANSACTION_TABLE, new byte[] {});
transactions = new SimpleTransactionService(kvs);
scrubStore = KeyValueServiceScrubberStore.create(kvs);
scrubber = getScrubber(kvs, scrubStore, transactions);
}
Aggregations