public static enum GenInputsAbstract.FlakyTestAction extends java.lang.Enum<GenInputsAbstract.FlakyTestAction>
GenInputsAbstract.flaky_test_behavior| Enum Constant and Description |
|---|
DISCARD
Discard the flaky test.
|
HALT
Randoop halts with a diagnostic message.
|
OUTPUT
Output the flaky test, but with flaky assertions commented out.
|
| Modifier and Type | Method and Description |
|---|---|
static GenInputsAbstract.FlakyTestAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GenInputsAbstract.FlakyTestAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenInputsAbstract.FlakyTestAction HALT
public static final GenInputsAbstract.FlakyTestAction DISCARD
public static final GenInputsAbstract.FlakyTestAction OUTPUT
OUTPUT, Randoop also suggests methods under test that might have caused the flakiness. You
should investigate
them, fix or exclude them, then re-run Randoop.public static GenInputsAbstract.FlakyTestAction[] values()
for (GenInputsAbstract.FlakyTestAction c : GenInputsAbstract.FlakyTestAction.values()) System.out.println(c);
public static GenInputsAbstract.FlakyTestAction 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