Esempio n. 1
0
        public void GetTreeHeight_Zero_WhenNull()
        {
            int h = BinaryTreeHelper.GetTreeHeight(null);

            // Expecting no exception
            h.Should().Be(0);
        }
Esempio n. 2
0
        public void GetTreeHeight_CheckHeight()
        {
            int height = BinaryTreeHelper.GetTreeHeight(_root);

            height.Should().Be(3);
        }