Test permutations of test parameters.
Brought to you by:
rupertlssmith
At the moment arbitrary test parameters can be specified on the command line using name=value syntax. There is syntax for specifying the test size that looks like:
-s[1,10,100]
for tests of size 1, 10 and 100.
It would be nice if a similar syntax were introduced to script multiple tests built from all combinations of test parameters. For example, if my test code can behave differently under the options cacheSize and batchSize, and I specified:
cacheSize=[1000,2000] batchSize=[10,100]
on the command line, then four tests would be run, one for each combination of these options.