Top "Quickcheck" questions

QuickCheck is a Haskell library for software testing.

How to generate arbitrary instances of a simple type for quickcheck

I have a simple type definition: data Cell = Cell { x :: Int, y :: Int } deriving (Show) I can't use Cell as …

haskell quickcheck
Have you used Quickcheck in a real project

Quickcheck and its variants (even there is one in Java), seems to be interesting. However, apart from academic interest, is …

java haskell testing quickcheck