smallcheck
chuchu
DISCONTINUED
Our great sponsors
smallcheck | chuchu | |
---|---|---|
1 | 0 | |
126 | 6 | |
- | - | |
2.6 | 0.0 | |
3 months ago | over 8 years ago | |
Haskell | Haskell | |
BSD 3-clause "New" or "Revised" License | LicenseRef-OtherLicense |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
smallcheck
-
Property-based testing #1: What is it anyway?
Another strategy is exhaustive generation. There, all possible values for some type are generated in some well-defined order - typically from "small" to "large" values, and with some upper bound, as once you go past booleans the number of values for most types are (countably) infinite. For example, trying all the integers between -20 and 20 in "zig zag" order 0,1,-1,2,-2,.... SmallCheck for Haskell and SciFe for Scala do this, but this approach is not so well-known. It's a shame as random and exhaustive generation are complementary - if you think of generating values as exploring some large space to find failing tests, random generation is a serendipitous type of exploration, while exhaustive generation is diligently mapping out all the paths in some area.
chuchu
We haven't tracked posts mentioning chuchu yet.
Tracking mentions began in Dec 2020.
What are some alternatives?
hedgehog - Release with confidence, state-of-the-art property testing for Haskell.
leancheck - enumerative property-based testing for Haskell
genvalidity - Validity and validity-based testing
smallcheck-series - Orphan Series/CoSeries instances for common types
silvi - Haskell library for generating fake data.
smallcheck-laws - Property testing for common type classes
titan - Testing Infrastructure for Temporal AbstractioNs
hspec-wai - Helpers to test WAI applications with Hspec
ghc-prof-flamegraph
DocTest - An implementation of Python's doctest for Haskell
test-framework - Framework for running and organising QuickCheck test properties and HUnit test cases
tasty - Modern and extensible testing framework for Haskell