Package org.azd.enums
Enum Class TestRunState
- All Implemented Interfaces:
Serializable
,Comparable<TestRunState>
,Constable
Test run state details
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRun is stopped and remaining tests have been abortedAll tests have completed or been skipped.Tests are running.Run requires investigation because of a test point failure This is a legacy state and should not be used any moreThe run is still being created.Only used during an update to preserve the existing value.Run is currently initializing This is a legacy state and should not be used any more -
Method Summary
Modifier and TypeMethodDescriptionstatic TestRunState
Returns the enum constant of this class with the specified name.static TestRunState[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABORTED
Run is stopped and remaining tests have been aborted -
COMPLETED
All tests have completed or been skipped. -
INPROGRESS
Tests are running. -
NEEDSINVESTIGATION
Run requires investigation because of a test point failure This is a legacy state and should not be used any more -
NOTSTARTED
The run is still being created. No tests have started yet. -
UNSPECIFIED
Only used during an update to preserve the existing value. -
WAITING
Run is currently initializing This is a legacy state and should not be used any more
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-