Ejemplo n.º 1
0
 public void createfolder_not_allowed_without_basepath()
 {
     _diObject = new DiObject(null);
     var result = _diObject.CreateFolder("foo");
 }
Ejemplo n.º 2
0
 public void Setup()
 {
     baseLocation = AppDomain.CurrentDomain.BaseDirectory;
     _diObject = new DiObject(baseLocation);
     // Console.WriteLine(baseLocation);
 }
 public void DeleteFolder_not_allowed_without_basepath()
 {
     _diObject = new DiObject(null);
     var result = _diObject.DeleteFolder("foo", false);
 }