Exemple #1
0
 public void TestSetUp()
 {
     storageSystem = new InMemoryStorageSystem();
     testStore     = storageSystem.CreateStore("TestStore");
     objStore      = new ObjectStore(1, testStore);
     objStore.Create();
 }
Exemple #2
0
 public void TestTearDown()
 {
     storageSystem.DeleteStore(testStore);
     storageSystem.Dispose();
     storageSystem = null;
 }