Is it possible with quickCheck to perform tests on several function with the same list of value with the aim of making a benchmark on these function ?
For example, I would like prop_test1
prop_test2
prop_test3
to be checked with the same list of arbitrary values.
quickCheckWithResult args prop_test1
quickCheckWithResult args prop_test2
quickCheckWithResult args prop_test3