mutagen-0.1.0.0: Property-based testing framework for Haskell using type-preserving mutations.
Safe HaskellNone
LanguageHaskell2010

Test.Mutagen.Report

Description

Testing reports.

Synopsis

Testing reports

data Report Source #

Testing report.

Constructors

Success

The property passed all tests.

Fields

Counterexample

The property failed for the given arguments.

Fields

GaveUp

The testing loop gave up before completing all tests.

Fields

NoExpectedFailure

The property was expected to fail, but all tests passed.

Fields

Instances

Instances details
Show Report Source # 
Instance details

Defined in Test.Mutagen.Report

isSuccess :: Report -> Bool Source #

Check if a report indicates a successful test run.