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

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