cabal-test-quickcheck-0.1.4: QuickCheck for Cabal

Safe HaskellSafe-Inferred
LanguageHaskell2010

Distribution.TestSuite.QuickCheck

Contents

Description

Joins the QuickCheck testing library with Cabal's detailed interface.

Synopsis

QuickCheck testing

testProperty :: Testable p => String -> p -> Test Source

Test a QuickCheck property using the current arguments and the given name.

testPropertyWithOptions :: Testable p => String -> Options -> p -> Either String Test Source

Test a QuickCheck property using the given arguments and name.

Re-export of Cabal's interface

data Test :: *

testGroup :: String -> [Test] -> Test

Create a named group of tests, which are assumed to be safe to run in parallel.