You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suppose the type you'd want for examples is something like [(String, [Witness])] to deal with the situation where you have multiple arguments to you property? (As per the example in Test.QuickCheck.Features).
To implement this you'd need to extend the State type to collect the examples, and you'd need to poke around in the Result type. Completely doable.
The thing that's missing from your example, by the way, are the calls to witness as there are not put in automatically by QuickCheck (as doing so would require having Typeableeverywhere and that's just horrible!).
With #376 closed we can get access to counterexamples:
I was wondering if we can extend this to
labelledExamplesResult
to get access to the examples?I'd like to be able to do something like:
The text was updated successfully, but these errors were encountered: