The function verboseCheck from QuickCheck 1 seems to be absent in QuickCheck 2 (or at least, I can't find it). Is there any other way to show which values are used during testing?
| |||
|
feedback
|
|
Looks like | ||||
|
feedback
|
|
The
This way, it's easy to play with your Arbitrary instances, and make sure they generate what you think they generate. | |||||
feedback
|
|
I've been happy with
| |||
|
feedback
|
|
Yes, this seems to be a functionality regression with respect to QuickCheck 1. You can work around it by annotating your properties with a Debug.Trace.trace statement, however. Something like:
| |||
|
feedback
|
|
I took a look at sources, and it seems that | |||
|
feedback
|