public void CleanUpTest()
 {
     if (testingFile.Exists)
     {
         testingFile.Delete();
     }
     logger.AssertNothingLogged();
 }
 public void TearDown()
 {
     try {
         logger.AssertNothingLogged();
     } finally {
         if (File.Exists(tempFilePath))
         {
             File.Delete(tempFilePath);
         }
     }
 }
Ejemplo n.º 3
0
 public void Cleanup()
 {
     logger.AssertNothingLogged();
 }