Haskell 的 doctest 非常有用。
一定要注意格式 第一行很重要,-- |
这行没有就不是一个 test。 可以对比 >>>
的个数 和 terminal里的 Examples 个数确认是否自己的所有 test 都测试了
Example:
代码语言:javascript复制-- | take an Integer n and returns the nth Fibonacci number.
--
-- >>> fibonacci 30
-- 832040
Haskell 的 doctest 非常有用。
一定要注意格式 第一行很重要,-- |
这行没有就不是一个 test。 可以对比 >>>
的个数 和 terminal里的 Examples 个数确认是否自己的所有 test 都测试了
Example:
代码语言:javascript复制-- | take an Integer n and returns the nth Fibonacci number.
--
-- >>> fibonacci 30
-- 832040