public static enum TestResult.TestStatus extends java.lang.Enum<TestResult.TestStatus>
| Enum Constant and Description |
|---|
ASSUMPTION_FAILURE
Test assumption failure
|
FAILURE
Test failed.
|
IGNORED
Test ignored
|
INCOMPLETE
Test started but not ended
|
PASSED
Test passed
|
| Modifier and Type | Method and Description |
|---|---|
static TestResult.TestStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TestResult.TestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestResult.TestStatus FAILURE
public static final TestResult.TestStatus PASSED
public static final TestResult.TestStatus INCOMPLETE
public static final TestResult.TestStatus ASSUMPTION_FAILURE
public static final TestResult.TestStatus IGNORED
public static TestResult.TestStatus[] values()
for (TestResult.TestStatus c : TestResult.TestStatus.values()) System.out.println(c);
public static TestResult.TestStatus 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