Pairwise testing seems to be a technique of reducing the combinatiorial explosion of parameterized tests while still attempting to test all unique-enough situations.
It is documented in more details here.
I wonder if Parameterized could implement support with a new DSL builder;
parameterizedPairwise {
// Exactly the same DSL as within the 'parameterized' block
}
that would run combinatorial requests using the pairwise method instead of running all cases.
Pairwise testing seems to be a technique of reducing the combinatiorial explosion of parameterized tests while still attempting to test all unique-enough situations.
It is documented in more details here.
I wonder if Parameterized could implement support with a new DSL builder;
parameterizedPairwise { // Exactly the same DSL as within the 'parameterized' block }that would run combinatorial requests using the pairwise method instead of running all cases.