Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Test.Tasty.Hedgehog
Description
This package lets you test Hedgehog properties with tasty.
Typical usage would look like this:
testGroup "tasty-hedgehog tests" [ testPropertyNamed "reverse involutive" "prop_reverse_involutive" prop_reverse_involutive , testPropertyNamed "sort idempotent" "prop_sort_idempotent" prop_sort_idempotent ]
Synopsis
- testProperty :: TestName -> Property -> TestTree
- testPropertyNamed :: TestName -> PropertyName -> Property -> TestTree
- fromGroup :: Group -> TestTree
- newtype HedgehogReplay = HedgehogReplay (Maybe (Skip, Seed))
- newtype HedgehogShowReplay = HedgehogShowReplay Bool
- newtype HedgehogTestLimit = HedgehogTestLimit (Maybe TestLimit)
- newtype HedgehogDiscardLimit = HedgehogDiscardLimit (Maybe DiscardLimit)
- newtype HedgehogShrinkLimit = HedgehogShrinkLimit (Maybe ShrinkLimit)
- newtype HedgehogShrinkRetries = HedgehogShrinkRetries (Maybe ShrinkRetries)
Documentation
testProperty :: TestName -> Property -> TestTree Source #
Create a TestTree
from a Hedgehog Property
.
testPropertyNamed :: TestName -> PropertyName -> Property -> TestTree Source #
testPropertyNamed
testName propertyName property
creates a
TestTree
from property
using testName
as the displayed
description for the property. The propertyName
is used by Hedgehog
when a failure occurs to provide instructions for how to re-run
the property and should normally be set to a string representation
of the property
argument.
testPropertyNamed "reverse is involutive" "prop_reverse_involutive" prop_reverse_involutive
Since: 1.2.0.0
Options you can pass in via tasty
newtype HedgehogReplay Source #
The replay token to use for replaying a previous test run
Constructors
HedgehogReplay (Maybe (Skip, Seed)) |
Instances
IsOption HedgehogReplay Source # | |
Defined in Test.Tasty.Hedgehog Methods defaultValue :: HedgehogReplay parseValue :: String -> Maybe HedgehogReplay optionName :: Tagged HedgehogReplay String optionHelp :: Tagged HedgehogReplay String showDefaultValue :: HedgehogReplay -> Maybe String optionCLParser :: Parser HedgehogReplay |
newtype HedgehogShowReplay Source #
If a test case fails, show a replay token for replaying tests
Constructors
HedgehogShowReplay Bool |
Instances
IsOption HedgehogShowReplay Source # | |
Defined in Test.Tasty.Hedgehog |
newtype HedgehogTestLimit Source #
The number of successful test cases required before Hedgehog will pass a test
Constructors
HedgehogTestLimit (Maybe TestLimit) |
Instances
Show HedgehogTestLimit Source # | |
Defined in Test.Tasty.Hedgehog | |
Eq HedgehogTestLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods (==) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # (/=) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # | |
Ord HedgehogTestLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods compare :: HedgehogTestLimit -> HedgehogTestLimit -> Ordering Source # (<) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # (<=) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # (>) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # (>=) :: HedgehogTestLimit -> HedgehogTestLimit -> Bool Source # max :: HedgehogTestLimit -> HedgehogTestLimit -> HedgehogTestLimit Source # min :: HedgehogTestLimit -> HedgehogTestLimit -> HedgehogTestLimit Source # | |
IsOption HedgehogTestLimit Source # | |
Defined in Test.Tasty.Hedgehog |
newtype HedgehogDiscardLimit Source #
The number of discarded cases allowed before Hedgehog will fail a test
Constructors
HedgehogDiscardLimit (Maybe DiscardLimit) |
Instances
Show HedgehogDiscardLimit Source # | |
Defined in Test.Tasty.Hedgehog | |
Eq HedgehogDiscardLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods (==) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # (/=) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # | |
Ord HedgehogDiscardLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods compare :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Ordering Source # (<) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # (<=) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # (>) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # (>=) :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> Bool Source # max :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> HedgehogDiscardLimit Source # min :: HedgehogDiscardLimit -> HedgehogDiscardLimit -> HedgehogDiscardLimit Source # | |
IsOption HedgehogDiscardLimit Source # | |
Defined in Test.Tasty.Hedgehog |
newtype HedgehogShrinkLimit Source #
The number of shrinks allowed before Hedgehog will fail a test
Constructors
HedgehogShrinkLimit (Maybe ShrinkLimit) |
Instances
Show HedgehogShrinkLimit Source # | |
Defined in Test.Tasty.Hedgehog | |
Eq HedgehogShrinkLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods (==) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # (/=) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # | |
Ord HedgehogShrinkLimit Source # | |
Defined in Test.Tasty.Hedgehog Methods compare :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Ordering Source # (<) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # (<=) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # (>) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # (>=) :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> Bool Source # max :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> HedgehogShrinkLimit Source # min :: HedgehogShrinkLimit -> HedgehogShrinkLimit -> HedgehogShrinkLimit Source # | |
IsOption HedgehogShrinkLimit Source # | |
Defined in Test.Tasty.Hedgehog |
newtype HedgehogShrinkRetries Source #
The number of times to re-run a test during shrinking
Constructors
HedgehogShrinkRetries (Maybe ShrinkRetries) |
Instances
Show HedgehogShrinkRetries Source # | |
Defined in Test.Tasty.Hedgehog | |
Eq HedgehogShrinkRetries Source # | |
Defined in Test.Tasty.Hedgehog Methods (==) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # (/=) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # | |
Ord HedgehogShrinkRetries Source # | |
Defined in Test.Tasty.Hedgehog Methods compare :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Ordering Source # (<) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # (<=) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # (>) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # (>=) :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> Bool Source # max :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> HedgehogShrinkRetries Source # min :: HedgehogShrinkRetries -> HedgehogShrinkRetries -> HedgehogShrinkRetries Source # | |
IsOption HedgehogShrinkRetries Source # | |
Defined in Test.Tasty.Hedgehog |