public static enum JUnitTestRunner.State extends Enum<JUnitTestRunner.State>
JUnitTestRunner can be in.| Enum Constant and Description |
|---|
Completed
Completed a set of tests.
|
NotRunning
Waiting to start run.
|
Running
Running a set of tests.
|
Stopped
The application has stopped.
|
Waiting
Waiting to start tests.
|
| Modifier and Type | Method and Description |
|---|---|
static JUnitTestRunner.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JUnitTestRunner.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JUnitTestRunner.State NotRunning
public static final JUnitTestRunner.State Waiting
public static final JUnitTestRunner.State Running
public static final JUnitTestRunner.State Completed
public static final JUnitTestRunner.State Stopped
public static JUnitTestRunner.State[] values()
for (JUnitTestRunner.State c : JUnitTestRunner.State.values()) System.out.println(c);
public static JUnitTestRunner.State 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.