Exemple #1
0
 public void GetItemAtPathShouldThrowException()
 {
     var locatable = new LocatableTest();
     Assert.IsNull(locatable.GetItemAtPath(""));
     Assert.AreEqual(locatable, locatable.GetItemAtPath("/"));
     var result = locatable.GetItemAtPath("foo");
 }
Exemple #2
0
        public void GetItemAtPathShouldThrowException()
        {
            var locatable = new LocatableTest();

            Assert.IsNull(locatable.GetItemAtPath(""));
            Assert.AreEqual(locatable, locatable.GetItemAtPath("/"));
            var result = locatable.GetItemAtPath("foo");
        }
Exemple #3
0
 public void IsPathUniqueShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.IsPathUnique("");
 }
Exemple #4
0
 public void DoesPathExistsShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.DoesPathExists("");
 }
Exemple #5
0
 public void GetItemsAtPathShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.GetItemsAtPath("");
 }
Exemple #6
0
 public void GetPathOfItemShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.GetPathOfItem(locatable);
 }
Exemple #7
0
 public void IsArachetypeRootShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.IsArchetypeRoot;
 }
Exemple #8
0
 public void ConceptShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result    = locatable.Concept;
 }
Exemple #9
0
 public void IsPathUniqueShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.IsPathUnique("");
 }
Exemple #10
0
 public void IsArachetypeRootShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.IsArchetypeRoot;
 }
Exemple #11
0
 public void GetPathOfItemShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.GetPathOfItem(locatable);
 }
Exemple #12
0
 public void GetItemsAtPathShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.GetItemsAtPath("");
 }
Exemple #13
0
 public void DoesPathExistsShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.DoesPathExists("");
 }
Exemple #14
0
 public void ConceptShouldThrowException()
 {
     var locatable = new LocatableTest();
     var result = locatable.Concept;
 }