Performs a cartesian product of parameterizations by appending each of the incoming args to each existing parameter's arg list. If you supply a prefix, it will also be appended to each parameter's name.
This works just like {@link #multiplyParametersByPrepending(Object)}, only each parameter label and value is appended instead of prepended.
@param args the list of named args to multiply by. Every other element (starting with the first) in the list mustbe a String that represents the name suffix; the element following each suffix is the argument to append to the args list. @throws IllegalArgumentException if the args aren't given as String-Object pairings. @throws IllegalStateException if there are no existing parameterizations to multiply by @see #multiplyParametersByPrepending(Object)
|
|
|
|
|
|