|
|
|
|
|
by paradoja
3365 days ago
|
|
It's like QuickCheck, but instead of testing random values, it tests all values in a certain range. For example, if the function takes an array of 128 bit values, it's test all the possible arrays of length 0, 1, 2... up to the length you want to test for. (Actually, not necessarily all, but all that an exhaustive generator generates; the generator would normally go through all values, but it potentially could only test some values, but would not select them at random). |
|