作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 another answer 之后的 QuickCheck .
我这样测试:
{-# LANGUAGE TemplateHaskell #-}
import Test.QuickCheck
import Test.QuickCheck.All
last' :: [a] -> a
last' [x] = x
last' (_:xs) = last' xs
prop_test x = last' x == last x
check = do
putStrLn "quickCheck"
quickCheck (prop_test :: [Char]-> Bool)
check2 = do
putStrLn "quickCheckAll"
$quickCheckAll
然后我将其加载到 winGHCI 并调用
check
和
check2
.我明白了
quickCheck
*** Failed! (after 1 test):
Exception:
list.hs:(7,1)-(8,23): Non-exhaustive patterns in function last'
""
我认为这是合理的。但是,我从
check2
得到这个
quickCheckAll
True
我很困惑,因为无论我如何更改
last'
函数,甚至错误,
quickCheckAll
总是返回 True。
最佳答案
来自 Test.QuickCheck.All
文档:
To use
quickCheckAll
, add a definition to your module along the lines ofreturn []
runTests = $quickCheckAlland then execute
runTests
.Note: the bizarre
return []
in the example above is needed on GHC 7.8; without it,quickCheckAll
will not be able to find any of the properties.
return []
在您的
check
之前让它对我有用。
关于unit-testing - quickCheckAll 总是返回 "True",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28358575/
我可以用一个完整的例子来说明如何使用 quickCheckAll .这是我迄今为止尝试过的: 在文件中 A.hs : module A where import Test.QuickCheck
我正在尝试使用 another answer 之后的 QuickCheck . 我这样测试: {-# LANGUAGE TemplateHaskell #-} import Test.QuickChe
我是一名优秀的程序员,十分优秀!