public void TearDown()
 {
     if (_library != null)
     {
         _library.Dispose();
     }
     _folder.Dispose();
 }
Exemple #2
0
 public void TearDown()
 {
     if (_cache != null)
     {
         _cache.Dispose();
     }
     _folder.Dispose();
 }
Exemple #3
0
 public void TearDown()
 {
     if (_cache != null)
     {
         _cache.Dispose();
         Thread.Sleep(50); //this seems to be needed when resharper is running the test suite, or else occasionally the test file is still open when the next test runs.
     }
     if (_folder != null)
     {
         _folder.Dispose();
     }
 }
Exemple #4
0
 public void TearDown()
 {
     _folder.Dispose();
 }