예제 #1
0
 public void IsRootLocalRegular_TrueTestsLoop(string test, bool expected)
 {
     // True
     foreach (var c in test)
     {
         QuickIOPath.IsRootLocalRegular(c + @":\").Should().Be(expected);
     }
 }
예제 #2
0
 public void IsRootLocalRegular_FalseTests(string test, bool expected)
 {
     QuickIOPath.IsRootLocalRegular(test).Should().Be(expected);
 }