public static enum TracingTestListener.TestInvocation extends Enum<TracingTestListener.TestInvocation> implements TracingTestListener.Invocation
| Enum Constant and Description |
|---|
TEST_AFTER_CLASS |
TEST_BEFORE_CLASS |
TEST_METHOD |
TEST_SET_UP |
TEST_TEAR_DOWN |
| Modifier and Type | Method and Description |
|---|---|
static TracingTestListener.TestInvocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TracingTestListener.TestInvocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TracingTestListener.TestInvocation TEST_BEFORE_CLASS
public static final TracingTestListener.TestInvocation TEST_SET_UP
public static final TracingTestListener.TestInvocation TEST_METHOD
public static final TracingTestListener.TestInvocation TEST_TEAR_DOWN
public static final TracingTestListener.TestInvocation TEST_AFTER_CLASS
public static TracingTestListener.TestInvocation[] values()
for (TracingTestListener.TestInvocation c : TracingTestListener.TestInvocation.values()) System.out.println(c);
public static TracingTestListener.TestInvocation 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 © 2017. All rights reserved.