Exemplo n.º 1
0
 public void IsPathUniqueThrowsException()
 {
     var details = new InstructionDetails();
     details.IsPathUnique(string.Empty);
 }
Exemplo n.º 2
0
 public void GetItemsAtPathThrowsException()
 {
     var details = new InstructionDetails();
     details.GetItemsAtPath(string.Empty);
 }
Exemplo n.º 3
0
 public void GetPathOfItemThrowsException()
 {
     var details = new InstructionDetails();
     details.GetPathOfItem(null);
 }
Exemplo n.º 4
0
 public void DoesPathExistsThrowsException()
 {
     var details = new InstructionDetails();
     details.DoesPathExists(string.Empty);
 }