|
|
|
|
|
by petschge
702 days ago
|
|
Sure, for booleans you can just test all combinations of input arguments. In some cases you can do the same for all possible 32 bit float or int values that you have as input. But for 64 bit integers (let alone several of them) that's not feasible. |
|
Known as boundary value testing, you partition all input into equivalence classes, then make sure your tests contain a sample from each class.