-
I want to fuzz a test, but the test has a 0 value check in the beginning so obviously the fuzzing test always fails when it passes in 0. Is it possible to write test to fuzz but not try 0 as an input? |
Beta Was this translation helpful? Give feedback.
Answered by
odyslam
May 29, 2022
Replies: 1 comment 1 reply
-
I think the |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
0xFloop
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think the
vm.assume(x>0)
is the cheatcodee you are searching