Example #1
0
 public void Search_MinHeightGreaterMaxHeightOrNegative_ThrowArgumentException(double minHeight, double maxHeight)
 {
     var ex = Assert.Throws <ArgumentException>(() => MunroSearcher.Search(null, default, minHeight, maxHeight));
Example #2
0
 public void Search_InvalidFilePath_ThrowDirectoryNotFoundException(string filePath)
 {
     Assert.Throws <DirectoryNotFoundException>(() => MunroSearcher.Search(filePath));
 }