@API(status=MAINTAINED, since="1.0") public enum AfterFailureMode extends java.lang.Enum<AfterFailureMode>
Property
Enum Constant and Description |
---|
NOT_SET |
PREVIOUS_SEED
Use the previous random seed that already detected a failure.
|
RANDOM_SEED
Use new random seed.
|
SAMPLE_FIRST
Run the property with just the previous falsified and shrunk sample first,
if that succeeds run property default behaviour, i.e. data-driven or random seed.
|
SAMPLE_ONLY
Run the property with just the previous falsified and shrunk sample.
|
Modifier and Type | Method and Description |
---|---|
static AfterFailureMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AfterFailureMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AfterFailureMode RANDOM_SEED
public static final AfterFailureMode PREVIOUS_SEED
public static final AfterFailureMode SAMPLE_ONLY
public static final AfterFailureMode SAMPLE_FIRST
@API(status=INTERNAL) public static final AfterFailureMode NOT_SET
public static AfterFailureMode[] values()
for (AfterFailureMode c : AfterFailureMode.values()) System.out.println(c);
public static AfterFailureMode 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