public enum ReducingMethod extends Enum<ReducingMethod>
Enum Constant and Description |
---|
HIDE_EMPTY_HOOKS
Does not display hooks (@Before and @After) which do not have attachment or error message.
|
MERGE_FEATURES_BY_ID
Merge features with different JSON files that have same ID so scenarios are be stored in single feature.
|
MERGE_FEATURES_WITH_RETEST
Merge features and scenarios from different JSON files of different runs
into a single report by features' and scenarios' ids.
|
SKIP_EMPTY_JSON_FILES
Skip empty JSON reports.
|
Modifier and Type | Method and Description |
---|---|
static ReducingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReducingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReducingMethod MERGE_FEATURES_BY_ID
public static final ReducingMethod MERGE_FEATURES_WITH_RETEST
public static final ReducingMethod SKIP_EMPTY_JSON_FILES
public static final ReducingMethod HIDE_EMPTY_HOOKS
public static ReducingMethod[] values()
for (ReducingMethod c : ReducingMethod.values()) System.out.println(c);
public static ReducingMethod valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.