- Version
- Download 43709
- File Size 503.42 KB
- File Count 1
- Create Date May 23, 2006
- Last Updated June 7, 2023
Let's say you must test something that involves a lot of different variables. Configuration testing is like that: different printers, different print options, different documents. Who knows what combination will fail? But you can't try all combinations of all variables together, because that would be too many tests. So instead, you could create tests that pair each value of each of the variables with each value of each other variable at least once. Allpairs is a tool I wrote that will find a reasonably small set of test cases to satisfy that coverage standard. For instance, to try all combinations of 10 variables with ten values each would require 10,000,000,000 test cases. Allpairs only requires 177 cases. Allpairs is a command-line executable based on a Perl script. Source is included.
File | Action |
---|---|
1686151481wpdm_allpairs.zip | Download |
Bryan Perez says
Thank you so much, I love this tool 🙂
Jörg Gellien says
Still rereading Lessons learned in Software testing once in a while. Your observations and advice seems not to age. Thanks for that inspiring book and the tools you provided.