@hackage QuickCheck2.1.0.3
Automatic testing of Haskell programs
Categories
License
BSD-3-Clause
Maintainer
QuickCheck developers <quickcheck@projects.haskell.org>
Links
- Homepage
- Documentation
- No source repository
- Security
Versions
Installation
Dependencies (5)
Dependents (3444)
@hackage/quickcheck-arbitrary-template, @hackage/timeseries, @hackage/Cabal, @hackage/mnist-idx, @hackage/myTestlll, @hackage/unix-memory, Show all…
Package Flags
splitbase
(on by default)
Choose the new smaller, split-up base package.
extensibleexceptions
(on by default)
Choose the even newer, even smaller, split-up base package.
QuickCheck is a library for random testing of program properties.
The programmer provides a specification of the program, in the form of properties which functions should satisfy, and QuickCheck then tests that the properties hold in a large number of randomly generated cases.
Specifications are expressed in Haskell, using combinators defined in the QuickCheck library. QuickCheck provides combinators to define properties, observe the distribution of test data, and define test data generators.