public void TestIsBalanced2()
        {
            UnbalancedBinaryTree<int> t = new UnbalancedBinaryTree<int>();
            t.Insert(4);
            t.Insert(2);
            t.Insert(3);
            t.Insert(1);
            t.Insert(6);
            t.Insert(5);
            t.Insert(7);

            Assert.IsTrue(t.IsBalanced());
            Assert.AreEqual(3, t.GetHeight());
        }
        public void TestGetHeight()
        {
            UnbalancedBinaryTree<int> t = new UnbalancedBinaryTree<int>();
            t.Insert(1);
            t.Insert(2);
            t.Insert(3);

            Assert.AreEqual(3, t.GetHeight());
        }