public static enum JUnitTestListener.Event.Type extends Enum<JUnitTestListener.Event.Type>
| Enum Constant and Description |
|---|
JUnitCompleted |
JUnitStarted |
testAssumptionFailure |
testClassFinished |
testClassStarted |
testError |
testFailure |
testIgnored |
testRunFinished |
testRunStarted |
testStarted |
testSuccess |
| Modifier and Type | Method and Description |
|---|---|
static JUnitTestListener.Event.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JUnitTestListener.Event.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JUnitTestListener.Event.Type JUnitStarted
public static final JUnitTestListener.Event.Type JUnitCompleted
public static final JUnitTestListener.Event.Type testRunStarted
public static final JUnitTestListener.Event.Type testRunFinished
public static final JUnitTestListener.Event.Type testClassStarted
public static final JUnitTestListener.Event.Type testClassFinished
public static final JUnitTestListener.Event.Type testStarted
public static final JUnitTestListener.Event.Type testSuccess
public static final JUnitTestListener.Event.Type testIgnored
public static final JUnitTestListener.Event.Type testAssumptionFailure
public static final JUnitTestListener.Event.Type testFailure
public static final JUnitTestListener.Event.Type testError
public static JUnitTestListener.Event.Type[] values()
for (JUnitTestListener.Event.Type c : JUnitTestListener.Event.Type.values()) System.out.println(c);
public static JUnitTestListener.Event.Type 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.