This PR adds basic support for running unit tests (no random value generation) via Hedgehog's test runner. So far, the Identity and IO monads are supported. Unit tests and property tests can be freely mixed in a Group.
This is still WIP as it is missing some documentation and examples. It might also lack some flexibility, because only Identity and IO are supported so far. I'll have to think about that some more.
This PR adds basic support for running unit tests (no random value generation) via Hedgehog's test runner. So far, the
Identity
andIO
monads are supported. Unit tests and property tests can be freely mixed in aGroup
.This is still WIP as it is missing some documentation and examples. It might also lack some flexibility, because only
Identity
andIO
are supported so far. I'll have to think about that some more.