public static enum TestDriverContext.TestExecutionPhase extends Enum<TestDriverContext.TestExecutionPhase>
Enum Constant and Description |
---|
CLEAN_INPUT
Cleaning input.
|
CLEAN_OUTPUT
Cleaning output.
|
EXECUTE
Performing execution.
|
PREPARE_INPUT
Preparing input.
|
PREPARE_OUTPUT
Preparing output.
|
VALIDATE_CONDITION
Validating test conditions.
|
VERIFY
Performing verification.
|
Modifier and Type | Method and Description |
---|---|
static TestDriverContext.TestExecutionPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestDriverContext.TestExecutionPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestDriverContext.TestExecutionPhase VALIDATE_CONDITION
public static final TestDriverContext.TestExecutionPhase CLEAN_INPUT
public static final TestDriverContext.TestExecutionPhase CLEAN_OUTPUT
public static final TestDriverContext.TestExecutionPhase PREPARE_INPUT
public static final TestDriverContext.TestExecutionPhase PREPARE_OUTPUT
public static final TestDriverContext.TestExecutionPhase EXECUTE
public static final TestDriverContext.TestExecutionPhase VERIFY
public static TestDriverContext.TestExecutionPhase[] values()
for (TestDriverContext.TestExecutionPhase c : TestDriverContext.TestExecutionPhase.values()) System.out.println(c);
public static TestDriverContext.TestExecutionPhase 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 © 2011–2019 Asakusa Framework Team. All rights reserved.