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