public void Teardown()
 {
     _table.MarkForDestruction();
     _table.WaitForDestroy(1000);
     File.Delete(_filename);
     File.Delete(_copiedfilename);
 }
Exemple #2
0
 public void wait_for_destruction_returns()
 {
     _table.WaitForDestroy(1000);
 }
Exemple #3
0
 public void the_file_is_deleted()
 {
     _table.WaitForDestroy(1000);
     Assert.IsFalse(File.Exists(_filename));
 }