Package org.eclipse.jdt.junit.model
Class ITestElement.ProgressState
- java.lang.Object
-
- org.eclipse.jdt.junit.model.ITestElement.ProgressState
-
- Enclosing interface:
- ITestElement
public static final class ITestElement.ProgressState extends Object
Running states of a test.
-
-
Field Summary
Fields Modifier and Type Field Description static ITestElement.ProgressStateCOMPLETEDstate that describes that the test element has completedstatic ITestElement.ProgressStateNOT_STARTEDstate that describes that the test element has not startedstatic ITestElement.ProgressStateRUNNINGstate that describes that the test element has is runningstatic ITestElement.ProgressStateSTOPPEDstate that describes that the test element has been stopped before being completed
-
-
-
Field Detail
-
NOT_STARTED
public static final ITestElement.ProgressState NOT_STARTED
state that describes that the test element has not started
-
RUNNING
public static final ITestElement.ProgressState RUNNING
state that describes that the test element has is running
-
STOPPED
public static final ITestElement.ProgressState STOPPED
state that describes that the test element has been stopped before being completed
-
COMPLETED
public static final ITestElement.ProgressState COMPLETED
state that describes that the test element has completed
-
-