I am calculating the number of blackbox fuzzing test I need to run on a program to find an error.
Say there is a 1/100 chance that my program throws an error. It takes in two arguments. What is the expected number of tests I need to run if no pair of arguments will ever be repeated?
Example:
x=1, y=1 -> PASS
x=2, y=1 -> PASS
x=1, y=1 -> ALREADY CALLED - SKIP
x=5, y=6 -> CRASH
etc.