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.ProgressState
COMPLETED
state that describes that the test element has completedstatic ITestElement.ProgressState
NOT_STARTED
state that describes that the test element has not startedstatic ITestElement.ProgressState
RUNNING
state that describes that the test element has is runningstatic ITestElement.ProgressState
STOPPED
state 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
-
-