Enum FlakyCaseResult.Status

java.lang.Object
java.lang.Enum<FlakyCaseResult.Status>
com.google.jenkins.flakyTestHandler.junit.FlakyCaseResult.Status
All Implemented Interfaces:
Serializable, Comparable<FlakyCaseResult.Status>
Enclosing class:
FlakyCaseResult

@SuppressRestrictedWarnings(hudson.tasks.junit.Messages.class) public static enum FlakyCaseResult.Status extends Enum<FlakyCaseResult.Status>
Constants that represent the status of this test.
  • Enum Constant Details

    • PASSED

      public static final FlakyCaseResult.Status PASSED
      This test runs OK, just like its previous run.
    • SKIPPED

      public static final FlakyCaseResult.Status SKIPPED
      This test was skipped due to configuration or the failure or skipping of a method that it depends on.
    • FAILED

      public static final FlakyCaseResult.Status FAILED
      This test failed, just like its previous run.
    • FIXED

      public static final FlakyCaseResult.Status FIXED
      This test has been failing, but now it runs OK.
    • REGRESSION

      public static final FlakyCaseResult.Status REGRESSION
      This test has been running OK, but now it failed.
  • Field Details

    • isOK

      public final boolean isOK
  • Method Details

    • values

      public static FlakyCaseResult.Status[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static FlakyCaseResult.Status valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • getCssClass

      public String getCssClass()
    • getMessage

      public String getMessage()
    • isRegression

      public boolean isRegression()