public static enum UseDataProvider.ResolveStrategy extends java.lang.Enum<UseDataProvider.ResolveStrategy>
| Enum Constant and Description |
|---|
AGGREGATE_ALL_MATCHES
Loops over every provided
UseDataProvider.resolver() and aggregates all resulting dataprovider methods. |
UNTIL_FIRST_MATCH
Tries to find valid dataprovider methods looping over the provided
UseDataProvider.resolver() until the first non-empty
result is returned or no further resolver is available. |
| Modifier and Type | Method and Description |
|---|---|
static UseDataProvider.ResolveStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UseDataProvider.ResolveStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UseDataProvider.ResolveStrategy UNTIL_FIRST_MATCH
UseDataProvider.resolver() until the first non-empty
result is returned or no further resolver is available.public static final UseDataProvider.ResolveStrategy AGGREGATE_ALL_MATCHES
UseDataProvider.resolver() and aggregates all resulting dataprovider methods. The test methods
to be executed are generated upon all these dataprovider methods.public static UseDataProvider.ResolveStrategy[] values()
for (UseDataProvider.ResolveStrategy c : UseDataProvider.ResolveStrategy.values()) System.out.println(c);
public static UseDataProvider.ResolveStrategy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null