public static enum TestCase.TestCaseResult extends Enum<TestCase.TestCaseResult>
Modifier and Type | Method and Description |
---|---|
static TestCase.TestCaseResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCase.TestCaseResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCase.TestCaseResult Passed
public static final TestCase.TestCaseResult Skipped
public static final TestCase.TestCaseResult Failed
public static TestCase.TestCaseResult[] values()
for (TestCase.TestCaseResult c : TestCase.TestCaseResult.values()) System.out.println(c);
public static TestCase.TestCaseResult 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–2020. All rights reserved.