haskell - Test several functions with the same list of value with quickCheck -
is possible quickcheck perform tests on several function same list of value aim of making benchmark on these function ?
for example, prop_test1
prop_test2
prop_test3
checked same list of arbitrary values.
quickcheckwithresult args prop_test1 quickcheckwithresult args prop_test2 quickcheckwithresult args prop_test3
if don't insist on using quickcheck, smallcheck might way go. it's quickcheck (bounded) exhaustive checks , produce same test values (when used same parameters).
Comments
Post a Comment