Being a fan of quickCheck, I have a lot of
prop_something_something = ...
throughout my program.
For convenience, to easily run all of them, I define
runchecks = do
quickCheck prop_something_something
quickCheck prop_something_different
but is there a nice way to generate runchecks
?
TL;DR: I want to easily run all quickChecks in a file. I guess one way is to prefix the runnable tests with test_ or something similar, but that might be too hacky.