Example #1
0
            public void SelectPathTest1()
            {
                PathSelectorUnderTest.AddProvider(new DummyClass1());

                var selectedPath = PathSelectorUnderTest.SelectPath();

                Assert.AreEqual("DummyClass1", selectedPath);
            }
Example #2
0
 public void InvalidPathExceptionFromProvider()
 {
     PathSelectorUnderTest.AddProvider(new InvalidPathDummy());
     PathSelectorUnderTest.SelectPath();
 }
Example #3
0
 public void NoPathsAvailable()
 {
     PathSelectorUnderTest.SelectPath();
 }
Example #4
0
 public void NoPathAvailableExceptionFromProvider1()
 {
     PathSelectorUnderTest.SilenceNoPathAvailableExceptions = false;
     PathSelectorUnderTest.SelectPath();
 }