예제 #1
0
 public void IsExistedDirectoryTest1()
 {
     string path = "C:\\temp";
     IOPath target = new IOPath(path);
     bool expected = true;
     bool actual;
     actual = target.IsExistedDirectory();
     Assert.AreEqual(expected, actual);
 }
예제 #2
0
 public void IsExistedDirectoryTest2()
 {
     string path = "C:\\temp\\scardsvr.exe";
     IOPath target = new IOPath(path);
     bool expected = false;
     bool actual;
     actual = target.IsExistedDirectory();
     Assert.AreEqual(expected, actual);
 }
예제 #3
0
 public void IsExistedDirectoryTest4()
 {
     string path = null;
     IOPath target = new IOPath(path);
     bool expected = false;
     bool actual;
     actual = target.IsExistedDirectory();
     Assert.AreEqual(expected, actual);
 }