Enum Result.Status

java.lang.Object
java.lang.Enum<Result.Status>
org.opentest4j.reporting.events.core.Result.Status
All Implemented Interfaces:
Serializable, Comparable<Result.Status>, java.lang.constant.Constable
Enclosing class:
Result

public static enum Result.Status extends Enum<Result.Status>
Enum of values for the status attribute of the result element.
  • Enum Constant Details

    • SKIPPED

      public static final Result.Status SKIPPED
      The test was skipped.
    • ABORTED

      public static final Result.Status ABORTED
      The test was aborted.
    • SUCCESSFUL

      public static final Result.Status SUCCESSFUL
      The test was successful.
    • FAILED

      public static final Result.Status FAILED
      The test failed.
  • Method Details

    • values

      public static Result.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 Result.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