Enum CaseResult.Status

    • Enum Constant Detail

      • PASSED

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

        public static final CaseResult.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 CaseResult.Status FAILED
        This test failed, just like its previous run.
      • FIXED

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

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

      • isOK

        public final boolean isOK
    • Method Detail

      • values

        public static CaseResult.Status[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CaseResult.Status c : CaseResult.Status.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CaseResult.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()