Esempio n. 1
0
 public void ItShouldNotRemoveTheFolder()
 {
     DirectoryInfo.AssertWasNotCalled(di => di.Delete());
 }
Esempio n. 2
0
 public void ItShouldNotTryToGetFilesInTheDirectory()
 {
     DirectoryInfo.AssertWasNotCalled(
         d => d.GetFiles(null),
         o => o.IgnoreArguments());
 }