public enum TestCaseExecutionType extends Enum<TestCaseExecutionType>
| Enum Constant and Description |
|---|
aggregatedTestCaseResult
Extendes the @statusTestCaseResult and provides the count and prevalence for every test case
|
extendedTestCaseResult
Extendes the @rlogTestCaseResult by providing richer information about each resource
|
rlogTestCaseResult
Reports at the violation instance level.
|
statusTestCaseResult
Runs the test cases and reports only one of @TestCaseResultStatus
|
| Modifier and Type | Method and Description |
|---|---|
static TestCaseExecutionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestCaseExecutionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestCaseExecutionType statusTestCaseResult
public static final TestCaseExecutionType aggregatedTestCaseResult
public static final TestCaseExecutionType rlogTestCaseResult
public static final TestCaseExecutionType extendedTestCaseResult
public static TestCaseExecutionType[] values()
for (TestCaseExecutionType c : TestCaseExecutionType.values()) System.out.println(c);
public static TestCaseExecutionType 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 © 2014. All rights reserved.