We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To improve on https://github.com/proptest-rs/proptest?tab=readme-ov-file#limitations-of-property-testing, it would be nice if the default distribution would try to cover following edges cases for numbers (u64, i64 etc.):
NUM::MIN NUM::MAX NUM::MIN + 1 MIN::MAX -1 NUM::MAX / 2 NUM::MAX / 2 - 1 NUM::MAX / 2 + 1 1<<1 1<<2 1<<3 1<<4 ...
This would already cover a lot of use cases. This could be done e.g. that one of those edge case values would be sampled with a 1% probability.
The text was updated successfully, but these errors were encountered:
This seems fairly straight forward for numeric types.
Mild amount of overlap with #284.
Sorry, something went wrong.
#369 for prior art -- will give that a look in a bit
No branches or pull requests
To improve on https://github.com/proptest-rs/proptest?tab=readme-ov-file#limitations-of-property-testing, it would be nice if the default distribution would try to cover following edges cases for numbers (u64, i64 etc.):
This would already cover a lot of use cases. This could be done e.g. that one of those edge case values would be sampled with a 1% probability.
The text was updated successfully, but these errors were encountered: