Exemple #1
0
        public void IsPathUniqueThrowsException()
        {
            var details = new InstructionDetails();

            details.IsPathUnique(string.Empty);
        }
Exemple #2
0
        public void DoesPathExistsThrowsException()
        {
            var details = new InstructionDetails();

            details.DoesPathExists(string.Empty);
        }
Exemple #3
0
        public void GetPathOfItemThrowsException()
        {
            var details = new InstructionDetails();

            details.GetPathOfItem(null);
        }
Exemple #4
0
        public void GetItemsAtPathThrowsException()
        {
            var details = new InstructionDetails();

            details.GetItemsAtPath(string.Empty);
        }
Exemple #5
0
 public Instructions()
 {
     details = new InstructionDetails();
 }