Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }