Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"cookbook" for converting from QuickCheck1 to QuickCheck2?

Is there a cookbook available for converting from QuickCheck1 to QuickCheck2?

As some examples, defaultConfig (replaced by Args) and trivial were removed and CoArbitrary introduced.

I did read the what's new in QuickCheck 2 (with single answer ...).

like image 244
gliptak Avatar asked May 23 '12 01:05

gliptak


2 Answers

It appears that the author(s) of QuickCheck2 have not provided Release Notes which are typically used to answer questions like yours. Assuming (uh oh, we know what that means!) that the author(s) updated the API doc, you can compare it to the version you have, and the differences will give you your cookbook. As a last resort, you could compare the source code, but that would probably show more differences than you care about.

like image 143
clairestreb Avatar answered Oct 24 '22 11:10

clairestreb


I don't know of any such document -- which is a shame!

There was however at least one partial changelist posted to a mailinglist: http://osdir.com/ml/lang.haskell.general/2006-11/msg00060.html

The list given there includes:

  • Shrinks failing test cases.
  • Supports testing monadic code.
  • Handles exceptions gracefully.
  • coarbitrary has moved to a separate class, to make it easier to write simple instances of Arbitrary.
  • Type-level modifiers for changing test data generation (e.g. NonNegative).
  • Magic function table printing.
  • User-defined actions when properties fail.
like image 30
sclv Avatar answered Oct 24 '22 12:10

sclv