use of com.dangdang.ddframe.rdb.transaction.soft.datasource.impl.MemoryTransactionLogDataSource in project sharding-jdbc by dangdangdotcom.
the class TransactionLogStorageFactoryTest method assertCreateMemoryTransactionLogStorageFactory.
@Test
public void assertCreateMemoryTransactionLogStorageFactory() {
TransactionLogDataSource transactionLogDataSource = new MemoryTransactionLogDataSource();
assertThat(TransactionLogStorageFactory.createTransactionLogStorage(transactionLogDataSource), instanceOf(TransactionLogStorage.class));
}
Aggregations