Enum PresentationMode
- All Implemented Interfaces:
Serializable,Comparable<PresentationMode>
Defines how the report is presented.
This list contains supported modes which can be used to define how the report is presented.
- Author:
- Damian Szczepanik (damianszczepanik@github)
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExpands all scenarios by default.Add "target" column to the report, when running the same tests many times.Defines additional menu buttons that enables integration with Jenkins. -
Method Summary
Modifier and TypeMethodDescriptionstatic PresentationModeReturns the enum constant of this type with the specified name.static PresentationMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RUN_WITH_JENKINS
Defines additional menu buttons that enables integration with Jenkins. -
EXPAND_ALL_STEPS
Expands all scenarios by default. -
PARALLEL_TESTING
Add "target" column to the report, when running the same tests many times. Value of this column is same as JSON report file name.
-
-
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
-