コード例 #1
0
        public static void GetMin_EmptyTree_ReturnsDefaultValue()
        {
            var tree = new BinarySearchTree <int>();

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