Package org.azd.enums
Enum Class TestOutcome
- All Implemented Interfaces:
Serializable
,Comparable<TestOutcome>
,Constable
Test run details.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionTest was aborted.Test had it chance for been executed but was not, as ITestElement.IsRunnable == false.There was a system error while we were trying to execute a test.Test was executed, but there were issues.Test has completed, but we can't say if it passed or failed.Test is currently executing.Test has not been completed, or the test type does not report pass/failure.Test is Not Applicable for execution.Test was not executed.Test is not impacted.Test was executed w/o any issues.Test is paused.The test timed outOnly used during an update to preserve the existing value.To be used by Run level results. -
Method Summary
Modifier and TypeMethodDescriptionstatic TestOutcome
Returns the enum constant of this class with the specified name.static TestOutcome[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ABORTED
Test was aborted. This was not caused by a user gesture, but rather by a framework decision. -
BLOCKED
Test had it chance for been executed but was not, as ITestElement.IsRunnable == false. -
ERROR
There was a system error while we were trying to execute a test. -
FAILED
Test was executed, but there were issues. Issues may involve exceptions or failed assertions. -
INPROGRESS
Test is currently executing. Added this for TCM charts -
INCONCLUSIVE
Test has completed, but we can't say if it passed or failed. May be used for aborted tests... -
NONE
Test has not been completed, or the test type does not report pass/failure. -
NOTAPPLICABLE
Test is Not Applicable for execution. -
NOTEXECUTED
Test was not executed. This was caused by a user gesture - e.g. user hit stop button. -
NOTIMPACTED
Test is not impacted. Added fot TIA. -
PASSED
Test was executed w/o any issues. -
PAUSED
Test is paused. -
TIMEOUT
The test timed out -
UNSPECIFIED
Only used during an update to preserve the existing value. -
WARNING
To be used by Run level results. This is not a failure.
-
-
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
-