public void FindSecondLargest_ExceptionWithTreeThatHasOneNodeTest()
        {
            var root = new BinaryTreeNode(50);

            Assert.Throws <ArgumentException>(() => FindSecondLargest(root));
        }