Package org.azd.enums

Enum Class TestRunState

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

public enum TestRunState extends Enum<TestRunState>
Test run state details
  • Enum Constant Details

    • ABORTED

      public static final TestRunState ABORTED
      Run is stopped and remaining tests have been aborted
    • COMPLETED

      public static final TestRunState COMPLETED
      All tests have completed or been skipped.
    • INPROGRESS

      public static final TestRunState INPROGRESS
      Tests are running.
    • NEEDSINVESTIGATION

      public static final TestRunState NEEDSINVESTIGATION
      Run requires investigation because of a test point failure This is a legacy state and should not be used any more
    • NOTSTARTED

      public static final TestRunState NOTSTARTED
      The run is still being created. No tests have started yet.
    • UNSPECIFIED

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

      public static final TestRunState WAITING
      Run is currently initializing This is a legacy state and should not be used any more
  • Method Details

    • values

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