-
-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix fscheck3 replay #515
Fix fscheck3 replay #515
Changes from 5 commits
e91ac3e
667b3b8
edbe859
acc624d
7308453
9c2cf10
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ type FsCheckConfig = | |
/// The size to use for the last test, when all the tests are passing. The size increases linearly between Start- and EndSize. | ||
endSize: int | ||
/// If set, the seed to use to start testing. Allows reproduction of previous runs. | ||
replay: (uint64 * uint64) option | ||
replay: (uint64 * uint64 * int) option | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The FsCheck API exposes size as an option. Is there a reason to require it here? Also, we should probably update the help text to mention size There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hmm I suppose not. I'll update to use an option, and update the fscheck2 stuff to use None |
||
/// The Arbitrary instances on this class will be merged in back to front order, i.e. instances for the same generated type at the front | ||
/// of the list will override those at the back. The instances on Arb.Default are always known, and are at the back (so they can always be | ||
/// overridden) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the motivation for always printing zero here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is so the user can copy and paste. The FsCheck 2 module will just ignore the third value