public enum TestStatus extends Enum<TestStatus>
| Enum Constant and Description |
|---|
BROKEN
When a test is run, an error that keeps the test from running to
completion.
|
FAILED
When a test is run and the actual outcome does not match the expected
out-come.
|
PASSED
A situation in which a test is run and all actual outcomes match the
expected outcomes.
|
SKIPPED
Test that did not run for some reason, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static TestStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestStatus FAILED
public static final TestStatus BROKEN
public static final TestStatus SKIPPED
public static final TestStatus PASSED
public static TestStatus[] values()
for (TestStatus c : TestStatus.values()) System.out.println(c);
public static TestStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Etnetera a.s.. All rights reserved.