tricorder VS LazySmallCheck2012

Compare tricorder vs LazySmallCheck2012 and see what are their differences.

LazySmallCheck2012

Lazy SmallCheck with functional values and existentials! (by UoYCS-plasma)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
tricorder LazySmallCheck2012
5 2
50 4
- -
5.6 0.0
7 months ago 3 months ago
Rust Haskell
MIT License BSD 3-clause "New" or "Revised" License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.

tricorder

Posts with mentions or reviews of tricorder. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-17.

LazySmallCheck2012

Posts with mentions or reviews of LazySmallCheck2012. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-27.
  • Generating Well-Typed Terms that are not "Useless" [pdf]
    2 projects | news.ycombinator.com | 27 Oct 2023
    Using laziness to avoid generating parts of an expression until it's needed is a really nice idea. The LazySmallCheck package[1] took this approach, but was limited in the types of data it could produce (e.g. it couldn't generate functions). This was extended by LazySmallCheck2012[2], but that seems to be unmaintained and doesn't work with more recent GHC versions.

    (Note that these are named in reference to SmallCheck[3], which takes the approach of enumerating concrete values in order of "size"; as an alternative to the more widely-used QuickCheck[4], which generates concrete values at random, and tries to "shrink" those which trigger a failure)

    [1] https://hackage.haskell.org/package/lazysmallcheck

    [2] https://github.com/UoYCS-plasma/LazySmallCheck2012

    [3] https://hackage.haskell.org/package/smallcheck

    [4] https://hackage.haskell.org/package/QuickCheck

  • Ask HN: What's your favorite software testing framework and why?
    15 projects | news.ycombinator.com | 21 May 2023
    I tend to use anything that offers property-testing, since tests are much shorter to write and uncover lots more hidden assumptions.

    My go-to choices per language are:

    - Python: Hypothesis https://hypothesis.readthedocs.io/en/latest (also compatible with PyTest)

    - Scala: ScalaCheck https://scalacheck.org (also compatible with ScalaTest)

    - Javascript/Typescript: JSVerify https://jsverify.github.io

    - Haskell: LazySmallCheck2012 https://github.com/UoYCS-plasma/LazySmallCheck2012/blob/mast...

    - When I wrote PHP (over a decade ago) there was no decent property-based test framework, so I cobbled one together https://github.com/Warbo/php-easycheck

    All of the above use the same basic setup: tests can make universally-quantified statements (e.g. "for all (x: Int), foo(x) == foo(foo(x))"), then the framework checks that statement for a bunch of different inputs.

    Most property-checking frameworks generate data randomly (with more or less sophistication). The Haskell ecosystem is more interesting:

    - QuickCheck was one of the first property-testing frameworks, using random genrators.

    - SmallCheck came later, which enumerates data instead (e.g. testing a Float might use 0, 1, -1, 2, -2, 0.5, -0.5, etc.). That's cute, but QuickCheck tends to exercise more code paths with each input.

    - LazySmallCheck builds up test data on-demand, using Haskell's pervasive laziness. Tests are run with an error as input: if they pass, we're done; if they fail, we're done; if they trigger the error, they're run again with slightly more-defined inputs. For example, if the input is supposed to be a list, we try again with the two forms of list: empty and "cons" (the arguments to cons are both errors, to begin with). This exercises even more code paths for each input.

    - LazySmallCheck2012 is a more versatile "update" to LazySmallCheck; in particular, it's able to generate functions.

What are some alternatives?

When comparing tricorder and LazySmallCheck2012 you can also consider the following projects:

z-run - z-run -- scripting library lightweight Go-based tool

jsverify - Write powerful and concise tests. Property-based testing for JavaScript. Like QuickCheck.

testy - test helpers for more meaningful, readable, and fluent tests

ospec - Noiseless testing framework

php-easycheck - Mirror of http://chriswarbo.net/git/php-easycheck

venom - 🐍 Manage and run your integration tests with efficiency - Venom run executors (script, HTTP Request, web, imap, etc... ) and assertions

automate - Native bash script for automate tasks in a multiple servers

datadriven - Data-Driven Testing for Go

lorikeet - A Parallel test runner for DevOps

smallcheck - Test your Haskell code by exhaustively checking its properties