hedgehog-0.1: Hedgehog will eat all your bugs.

Safe HaskellNone
LanguageHaskell98

Hedgehog.Internal.Report

Contents

Synopsis

Report

data Report Source #

The report from a property test run.

Instances

data Status Source #

The status of a property test run.

In the case of a failure it provides the seed used for the test, the number of shrinks, and the execution log.

Instances

data ShrinkCount Source #

The numbers of times a property was able to shrink after a failing test.

Instances

Enum ShrinkCount Source # 
Eq ShrinkCount Source # 
Integral ShrinkCount Source # 
Num ShrinkCount Source # 
Ord ShrinkCount Source # 
Real ShrinkCount Source # 
Show ShrinkCount Source # 

data TestCount Source #

The number of tests a property ran successfully.

Instances

Enum TestCount Source # 
Eq TestCount Source # 
Integral TestCount Source # 
Num TestCount Source # 
Ord TestCount Source # 
Real TestCount Source # 
Show TestCount Source # 

data DiscardCount Source #

The number of tests a property had to discard.

Instances

Enum DiscardCount Source # 
Eq DiscardCount Source # 
Integral DiscardCount Source # 
Num DiscardCount Source # 
Ord DiscardCount Source # 
Real DiscardCount Source # 
Show DiscardCount Source # 

data Style Source #

Instances