Example #1
0
        public void IsPathUniqueThrowsException()
        {
            var transition = new IsmTransition();

            transition.IsPathUnique(string.Empty);
        }
Example #2
0
        public void GetItemsAtPathThrowsException()
        {
            var transition = new IsmTransition();

            transition.GetItemsAtPath(string.Empty);
        }
Example #3
0
        public void DoesPathExistsThrowsException()
        {
            var transition = new IsmTransition();

            transition.DoesPathExists(string.Empty);
        }
Example #4
0
        public void GetPathOfItemThrowsException()
        {
            var transition = new IsmTransition();

            transition.GetPathOfItem(null);
        }