Package hudson.tasks.junit
Enum CaseResult.Status
- All Implemented Interfaces:
Serializable
,Comparable<CaseResult.Status>
- Enclosing class:
- CaseResult
Constants that represent the status of this test.
-
Enum Constant Summary
Enum ConstantDescriptionThis test failed, just like its previous run.This test has been failing, but now it runs OK.This test runs OK, just like its previous run.This test has been running OK, but now it failed.This test was skipped due to configuration or the failure or skipping of a method that it depends on. -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
static CaseResult.Status
Returns the enum constant of this type with the specified name.static CaseResult.Status[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PASSED
This test runs OK, just like its previous run. -
SKIPPED
This test was skipped due to configuration or the failure or skipping of a method that it depends on. -
FAILED
This test failed, just like its previous run. -
FIXED
This test has been failing, but now it runs OK. -
REGRESSION
This test has been running OK, but now it failed.
-
-
Field Details
-
isOK
public final boolean isOK
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getCssClass
-
getMessage
-
isRegression
public boolean isRegression()
-