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
Add a way to support variables which should be fuzzed
This could be:
between
greater than
lesser than
equals
For instance
Test.Test ├── When X is between a and b └──── it should do something
should then have a corresponding test
function test_WhenXIsBetweenAAndB(uint256 fuzzedX) external { fuzzedX = bound(fuzzedX, A, B); // It should do something
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add a way to support variables which should be fuzzed
This could be:
between
,greater than
,lesser than
,equals
for the opposite/reverting)For instance
should then have a corresponding test
The text was updated successfully, but these errors were encountered: