kota's memex

https://crates.io/crates/quickcheck

A library for running "prop tests" or "fuzzes". Usually you would use a library like rust fake to generate random test data and then use quickcheck to run a wide range of samples in your tests.

The killer feature is that when a failure is found it will re-run with smaller inputs to try and isolate a minimal reproducible example.

As an alternative see rust proptest.