Beispiel #1
0
 public void IsPathUniqueThrowsException()
 {
     var transition = new IsmTransition();
     transition.IsPathUnique(string.Empty);
 }
Beispiel #2
0
 public void GetItemsAtPathThrowsException()
 {
     var transition = new IsmTransition();
     transition.GetItemsAtPath(string.Empty);
 }
Beispiel #3
0
 public void GetPathOfItemThrowsException()
 {
     var transition = new IsmTransition();
     transition.GetPathOfItem(null);
 }
Beispiel #4
0
 public void DoesPathExistsThrowsException()
 {
     var transition = new IsmTransition();
     transition.DoesPathExists(string.Empty);
 }