I have a test using FsCheck, when it fails it give me the information about the seed to put on the Replay
property to reproduce the failed test.
But to debug this is really hard, because it will not fail on the first value.
FsCheck also give me the information about the number of attempt until fail: Falsifiable, after 74 tests
Is there any way to run the exactly value that has failed?
Workarounds that I'm using:
- Create test passing the value that it gives me to debug, and after fix the code I delete this test;
- Add a conditional breakpoint in the test for the value that make the test fails.
Both of them work, but must be a better way.