ArgumentsCombiner |
ArgumentsCombiner.crossJoin(Object... arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoin(Collection<?> arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoin(Supplier<? extends Stream<?>> argumentsProvider) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoin(ArgumentsProvider argumentsProvider,
ExtensionContext context) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinBooleans(boolean[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinBytes(byte[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinChars(char[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinDoubles(double[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinFloats(float[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinInts(int[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinLongs(long[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.crossJoinShorts(short[] arguments) |
Adds a set of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.excludeCombination(Object... values) |
Excludes a combination of values from the current combinations of arguments.
|
ArgumentsCombiner |
ArgumentsCombiner.excludeCombinations(Predicate<? super Object[]> filter) |
Excludes all combinations of arguments that match a filter.
|
static ArgumentsCombiner |
ArgumentsCombiner.with(Object... arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.with(Collection<?> arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.with(Stream<?> arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.with(ArgumentsProvider argumentsProvider,
ExtensionContext context) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withBooleans(boolean[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withBytes(byte[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withChars(char[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withDoubles(double[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withFloats(float[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withInts(int[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withLongs(long[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|
static ArgumentsCombiner |
ArgumentsCombiner.withShorts(short[] arguments) |
Creates an arguments combiner with an initial set of arguments.
|