public static enum TestExecutionResult.Status extends java.lang.Enum<TestExecutionResult.Status>
Enum Constant and Description |
---|
ABORTED
Indicates that the execution of a test or container was
aborted (started but not finished).
|
FAILED
Indicates that the execution of a test or container has
failed.
|
SUCCESSFUL
Indicates that the execution of a test or container was
successful.
|
Modifier and Type | Method and Description |
---|---|
static TestExecutionResult.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestExecutionResult.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestExecutionResult.Status SUCCESSFUL
public static final TestExecutionResult.Status ABORTED
public static final TestExecutionResult.Status FAILED
public static TestExecutionResult.Status[] values()
for (TestExecutionResult.Status c : TestExecutionResult.Status.values()) System.out.println(c);
public static TestExecutionResult.Status 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