Пример #1
0
 public void NavigationStructure_root_should_have_grandchildren()
 {
     var structure = new NavigationStructure();
     structure.HasGrandchildren().Should().BeTrue();
 }
Пример #2
0
 public void NavigationStructure_GetDescendants_should_have_count_27()
 {
     var structure = new NavigationStructure();
     structure.GetDescendants().Should().HaveCount(27);
 }
Пример #3
0
 public void NavigationStructure_root_should_have_5_children()
 {
     var structure = new NavigationStructure();
     structure.Items.Should().HaveCount(5);
 }
Пример #4
0
 public void NavigationStructure_GetDescendantsAndSelf_should_have_count_28()
 {
     var structure = new NavigationStructure();
     structure.GetDescendantsAndSelf().Should().HaveCount(28);
 }
Пример #5
0
        public void NavigationStructure_root_should_have_grandchildren()
        {
            var structure = new NavigationStructure();

            structure.HasGrandchildren().Should().BeTrue();
        }
Пример #6
0
        public void NavigationStructure_root_should_have_5_children()
        {
            var structure = new NavigationStructure();

            structure.Items.Should().HaveCount(5);
        }
Пример #7
0
        public void NavigationStructure_GetDescendantsAndSelf_should_have_count_28()
        {
            var structure = new NavigationStructure();

            structure.GetDescendantsAndSelf().Should().HaveCount(28);
        }
Пример #8
0
        public void NavigationStructure_GetDescendants_should_have_count_27()
        {
            var structure = new NavigationStructure();

            structure.GetDescendants().Should().HaveCount(27);
        }