quickcheck-silent 0.11.0.3 → 0.11.0.4
raw patch · 3 files changed
+8/−2 lines, 3 filesPVP: minor bump suggested
API additions: PVP suggests at least a minor version bump
API changes (from Hackage documentation)
+ Test.QuickCheck.Silent: Failure :: Int -> Int -> Int -> Int -> Int -> QCGen -> Int -> String -> Maybe AnException -> String -> [String] -> [String] -> Set String -> [Witness] -> Result
+ Test.QuickCheck.Silent: GaveUp :: Int -> Int -> !Map [String] Int -> !Map String Int -> !Map String (Map String Int) -> String -> Result
+ Test.QuickCheck.Silent: NoExpectedFailure :: Int -> Int -> !Map [String] Int -> !Map String Int -> !Map String (Map String Int) -> String -> Result
+ Test.QuickCheck.Silent: Success :: Int -> Int -> !Map [String] Int -> !Map String Int -> !Map String (Map String Int) -> String -> Result
+ Test.QuickCheck.Silent: [classes] :: Result -> !Map String Int
+ Test.QuickCheck.Silent: [failingClasses] :: Result -> Set String
+ Test.QuickCheck.Silent: [failingLabels] :: Result -> [String]
+ Test.QuickCheck.Silent: [failingTestCase] :: Result -> [String]
+ Test.QuickCheck.Silent: [labels] :: Result -> !Map [String] Int
+ Test.QuickCheck.Silent: [numDiscarded] :: Result -> Int
+ Test.QuickCheck.Silent: [numShrinkFinal] :: Result -> Int
+ Test.QuickCheck.Silent: [numShrinkTries] :: Result -> Int
+ Test.QuickCheck.Silent: [numShrinks] :: Result -> Int
+ Test.QuickCheck.Silent: [numTests] :: Result -> Int
+ Test.QuickCheck.Silent: [output] :: Result -> String
+ Test.QuickCheck.Silent: [reason] :: Result -> String
+ Test.QuickCheck.Silent: [tables] :: Result -> !Map String (Map String Int)
+ Test.QuickCheck.Silent: [theException] :: Result -> Maybe AnException
+ Test.QuickCheck.Silent: [usedSeed] :: Result -> QCGen
+ Test.QuickCheck.Silent: [usedSize] :: Result -> Int
+ Test.QuickCheck.Silent: [witnesses] :: Result -> [Witness]
+ Test.QuickCheck.Silent: data Result
Files
- CHANGELOG.md +5/−0
- quickcheck-silent.cabal +1/−1
- src/Test/QuickCheck/Silent.hs +2/−1
CHANGELOG.md view
@@ -1,5 +1,10 @@ # Revision history for quickcheck-silent +## 0.11.0.4 -- 2026-08-07++* Re-exporting `Test.QuickChech.Result` to avoid dependency on the `QuickChech`+ package+ ## 0.11.0.3 -- 2026-08-07 * There seem to be a lot of errors that aren't happening on build of the
quickcheck-silent.cabal view
@@ -10,7 +10,7 @@ build-type: Simple name: quickcheck-silent-version: 0.11.0.3+version: 0.11.0.4 synopsis: Testing with QuickCheck in silence description: Testing with QuickCheck in silence. For more info see README.md
src/Test/QuickCheck/Silent.hs view
@@ -21,6 +21,7 @@ , silent -- , withNumTests -- * Running tests+ , Result(..) , quickCheckSilent ) where@@ -29,7 +30,7 @@ import Test.QuickCheck ( Property- , Result+ , Result (..) , Testable , chatty , property