public static enum TestSuiteReport.Status extends Enum<TestSuiteReport.Status>
| Enum Constant and Description |
|---|
FAILURE |
SKIPPED |
SUCCESS |
UNKNOWN |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isSevere(TestSuiteReport.Status other) |
static TestSuiteReport.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestSuiteReport.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestSuiteReport.Status SKIPPED
public static final TestSuiteReport.Status UNKNOWN
public static final TestSuiteReport.Status SUCCESS
public static final TestSuiteReport.Status WARNING
public static final TestSuiteReport.Status FAILURE
public static TestSuiteReport.Status[] values()
for (TestSuiteReport.Status c : TestSuiteReport.Status.values()) System.out.println(c);
public static TestSuiteReport.Status 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 nullpublic boolean isSevere(TestSuiteReport.Status other)
Copyright © 2018. All rights reserved.