Safe Haskell | None |
---|
Test.Tasty.QuickCheck
Description
This module allows to use QuickCheck properties in tasty.
- testProperty :: Testable a => TestName -> a -> TestTree
- newtype QuickCheckTests = QuickCheckTests Int
- newtype QuickCheckReplay = QuickCheckReplay (Maybe (StdGen, Int))
- newtype QuickCheckMaxSize = QuickCheckMaxSize Int
- newtype QuickCheckMaxRatio = QuickCheckMaxRatio Int
- module Test.QuickCheck
Documentation
testProperty :: Testable a => TestName -> a -> TestTreeSource
Create a Test
for a QuickCheck Testable
property
newtype QuickCheckTests Source
Number of test cases for QuickCheck to generate
Constructors
QuickCheckTests Int |
newtype QuickCheckReplay Source
Replay a previous test using a replay token
Constructors
QuickCheckReplay (Maybe (StdGen, Int)) |
Instances
newtype QuickCheckMaxRatio Source
Maximum number of of discarded tests per successful test before giving up.
Constructors
QuickCheckMaxRatio Int |
module Test.QuickCheck