Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

## NEXT RELEASE

- Elaborate on `QCheck`/`QCheck2` situation in README
- Add a missing `description` field to the *.opam files
- Document `Shrink` invariants in the `QCheck` module
- Fix a qcheck-ounit test suite failure on OCaml 5.4, removing a needless extra newline
Expand Down
6 changes: 6 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,12 @@ let test_buggy =
QCheck_base_runner.run_tests [test_buggy];;
----

Being newer the `QCheck2` module is less battle tested than `QCheck`.
`QCheck2` on the other hand removes the need for having to hand-write shrinkers.
`QCheck` tests can be ported to `QCheck2` by following the
https://c-cube.github.io/qcheck/dev/qcheck-core/QCheck2/index.html#migration_qcheck2[migration guide].
Please file an issue if you encounter problems using either of the two modules.


=== Preconditions

Expand Down