| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Test.Mutagen.Report
Contents
Description
Testing reports.
Synopsis
- data Report
- = Success { }
- | Counterexample {
- numPassed :: Int
- numDiscarded :: Int
- failingArgs :: Args
- | GaveUp { }
- | NoExpectedFailure {
- numPassed :: Int
- numDiscarded :: Int
- isSuccess :: Report -> Bool
Testing reports
Testing report.
Constructors
| Success | The property passed all tests. |
| Counterexample | The property failed for the given arguments. |
Fields
| |
| GaveUp | The testing loop gave up before completing all tests. |
| NoExpectedFailure | The property was expected to fail, but all tests passed. |
Fields
| |