Package org.azd.enums

Enum Class TestOutcome

java.lang.Object
java.lang.Enum<TestOutcome>
org.azd.enums.TestOutcome
All Implemented Interfaces:
Serializable, Comparable<TestOutcome>, Constable

public enum TestOutcome extends Enum<TestOutcome>
Test run details.
  • Enum Constant Details

    • ABORTED

      public static final TestOutcome ABORTED
      Test was aborted. This was not caused by a user gesture, but rather by a framework decision.
    • BLOCKED

      public static final TestOutcome BLOCKED
      Test had it chance for been executed but was not, as ITestElement.IsRunnable == false.
    • ERROR

      public static final TestOutcome ERROR
      There was a system error while we were trying to execute a test.
    • FAILED

      public static final TestOutcome FAILED
      Test was executed, but there were issues. Issues may involve exceptions or failed assertions.
    • INPROGRESS

      public static final TestOutcome INPROGRESS
      Test is currently executing. Added this for TCM charts
    • INCONCLUSIVE

      public static final TestOutcome INCONCLUSIVE
      Test has completed, but we can't say if it passed or failed. May be used for aborted tests...
    • NONE

      public static final TestOutcome NONE
      Test has not been completed, or the test type does not report pass/failure.
    • NOTAPPLICABLE

      public static final TestOutcome NOTAPPLICABLE
      Test is Not Applicable for execution.
    • NOTEXECUTED

      public static final TestOutcome NOTEXECUTED
      Test was not executed. This was caused by a user gesture - e.g. user hit stop button.
    • NOTIMPACTED

      public static final TestOutcome NOTIMPACTED
      Test is not impacted. Added fot TIA.
    • PASSED

      public static final TestOutcome PASSED
      Test was executed w/o any issues.
    • PAUSED

      public static final TestOutcome PAUSED
      Test is paused.
    • TIMEOUT

      public static final TestOutcome TIMEOUT
      The test timed out
    • UNSPECIFIED

      public static final TestOutcome UNSPECIFIED
      Only used during an update to preserve the existing value.
    • WARNING

      public static final TestOutcome WARNING
      To be used by Run level results. This is not a failure.
  • Method Details

    • values

      public static TestOutcome[] 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

      public static TestOutcome valueOf(String name)
      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 name
      NullPointerException - if the argument is null