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.
13 lines
364 B
Makefile
13 lines
364 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2009/09/23 06:02:41 phonohawk Exp $
|
|
#
|
|
|
|
DISTNAME= QuickCheck-1.2.0.0
|
|
PKGNAME= hs-QuichCheck1-1.2.0.0
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pho@cielonegro.org
|
|
HOMEPAGE= http://www.math.chalmers.se/~rjmh/QuickCheck/
|
|
COMMENT= Automatic testing of Haskell programs (Old version)
|
|
|
|
.include "../../wip/mk/haskell.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|