446561adea
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.
16 lines
515 B
Makefile
16 lines
515 B
Makefile
# $NetBSD: buildlink3.mk,v 1.1 2015/02/14 04:34:33 pho Exp $
|
|
|
|
BUILDLINK_TREE+= hs-QuickCheck
|
|
|
|
.if !defined(HS_QUICKCHECK_BUILDLINK3_MK)
|
|
HS_QUICKCHECK_BUILDLINK3_MK:=
|
|
|
|
BUILDLINK_API_DEPENDS.hs-QuickCheck+= hs-QuickCheck>=2.7.6
|
|
BUILDLINK_ABI_DEPENDS.hs-QuickCheck+= hs-QuickCheck>=2.7.6
|
|
BUILDLINK_PKGSRCDIR.hs-QuickCheck?= ../../devel/hs-QuickCheck
|
|
|
|
.include "../../devel/hs-random/buildlink3.mk"
|
|
.include "../../devel/hs-tf-random/buildlink3.mk"
|
|
.endif # HS_QUICKCHECK_BUILDLINK3_MK
|
|
|
|
BUILDLINK_TREE+= -hs-QuickCheck
|