예제 #1
0
 public RocksDBStoreTest()
 {
     try
     {
         Fx = _fx = new RocksDBStoreFixture();
     }
     catch (TypeInitializationException)
     {
         throw new SkipException("RocksDB is not available.");
     }
 }
예제 #2
0
 public RocksDBStoreTest(ITestOutputHelper testOutputHelper)
 {
     try
     {
         TestOutputHelper = testOutputHelper;
         Fx            = _fx = new RocksDBStoreFixture();
         FxConstructor = () => new RocksDBStoreFixture();
     }
     catch (TypeInitializationException)
     {
         throw new SkipException("RocksDB is not available.");
     }
 }