-
Is it possible to know in advance how many Test Cases will be generated during testing? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Yes, you can use Without a depth of 1, combinatorial fuzzing is activated and the number of test cases can not be calculated easily. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your reply. I'm new to using boofuzz and found the mentioned function but didn't quite understand the purpose of the depth parameter. Let me want to form a package consisting of three blocks: s_byte, s_word, s_random. With the parameter depth=1 in fuzzing, will all blocks change or only the first one will change, while the other two will take the default value? |
Beta Was this translation helpful? Give feedback.
-
There is also, session.total_num_mutations which i use in callbacks for cheap progress bar functionality. |
Beta Was this translation helpful? Give feedback.
Yes, you can use
Session.num_mutations(1)
to get the number of test cases with a depth of 1. The depth has to be consistent with the one handed toSession.fuzz(1)
.Without a depth of 1, combinatorial fuzzing is activated and the number of test cases can not be calculated easily.