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