public static void GetMin_EmptyTree_ReturnsDefaultValue()
        {
            var tree = new BinarySearchTree <int>();

            Assert.IsNull(tree.GetMin());
        }