| Enum Constant and Description |
|---|
DYNAMIC_TEST_REGISTERED
Signals that a
TestDescriptor has been dynamically registered. |
FINISHED
Signals that the execution of a
TestDescriptor has finished,
regardless of the outcome. |
REPORTING_ENTRY_PUBLISHED
Signals that a
TestDescriptor published a reporting entry. |
SKIPPED
Signals that the execution of a
TestDescriptor has been skipped. |
STARTED
Signals that the execution of a
TestDescriptor has started. |
| Modifier and Type | Method and Description |
|---|---|
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType DYNAMIC_TEST_REGISTERED
TestDescriptor has been dynamically registered.public static final EventType SKIPPED
TestDescriptor has been skipped.public static final EventType STARTED
TestDescriptor has started.public static final EventType FINISHED
TestDescriptor has finished,
regardless of the outcome.public static final EventType REPORTING_ENTRY_PUBLISHED
TestDescriptor published a reporting entry.public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null