Exemplo n.º 1
0
 public void NavigationStructure_root_should_have_grandchildren()
 {
     var structure = new NavigationStructure();
     structure.HasGrandchildren().Should().BeTrue();
 }
Exemplo n.º 2
0
 public void NavigationStructure_GetDescendants_should_have_count_27()
 {
     var structure = new NavigationStructure();
     structure.GetDescendants().Should().HaveCount(27);
 }
Exemplo n.º 3
0
 public void NavigationStructure_root_should_have_5_children()
 {
     var structure = new NavigationStructure();
     structure.Items.Should().HaveCount(5);
 }
Exemplo n.º 4
0
 public void NavigationStructure_GetDescendantsAndSelf_should_have_count_28()
 {
     var structure = new NavigationStructure();
     structure.GetDescendantsAndSelf().Should().HaveCount(28);
 }
Exemplo n.º 5
0
        public void NavigationStructure_root_should_have_grandchildren()
        {
            var structure = new NavigationStructure();

            structure.HasGrandchildren().Should().BeTrue();
        }
Exemplo n.º 6
0
        public void NavigationStructure_root_should_have_5_children()
        {
            var structure = new NavigationStructure();

            structure.Items.Should().HaveCount(5);
        }
Exemplo n.º 7
0
        public void NavigationStructure_GetDescendantsAndSelf_should_have_count_28()
        {
            var structure = new NavigationStructure();

            structure.GetDescendantsAndSelf().Should().HaveCount(28);
        }
Exemplo n.º 8
0
        public void NavigationStructure_GetDescendants_should_have_count_27()
        {
            var structure = new NavigationStructure();

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