public static enum TestAssertion.Status extends Enum<TestAssertion.Status>
| Enum Constant and Description |
|---|
FAILED
Indicates a test failure
|
PASSED
Indicates that a test assertion passed
|
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TestAssertion.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestAssertion.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestAssertion.Status PASSED
public static final TestAssertion.Status FAILED
public static final TestAssertion.Status UNKNOWN
public static TestAssertion.Status[] values()
for (TestAssertion.Status c : TestAssertion.Status.values()) System.out.println(c);
public static TestAssertion.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 String toString()
toString in class Enum<TestAssertion.Status>Copyright © 2015–2021 The veraPDF Consortium. All rights reserved.