Enum PredictiveTestSelectionMode
java.lang.Object
java.lang.Enum<PredictiveTestSelectionMode>
com.gradle.enterprise.gradleplugin.testselection.PredictiveTestSelectionMode
- All Implemented Interfaces:
Serializable
,Comparable<PredictiveTestSelectionMode>
,java.lang.constant.Constable
Deprecated.
Mode to use for selecting tests.
- Since:
- 3.14
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionDeprecated.In this mode, test classes are selected according to their predicted relevance.Deprecated.In this mode, all test classes that have not yet had a successful or flaky outcome for the same inputs will be selected. -
Method Summary
Modifier and TypeMethodDescriptionstatic PredictiveTestSelectionMode
Deprecated.Returns the enum constant of this type with the specified name.static PredictiveTestSelectionMode[]
values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RELEVANT_TESTS
Deprecated.In this mode, test classes are selected according to their predicted relevance. -
REMAINING_TESTS
Deprecated.In this mode, all test classes that have not yet had a successful or flaky outcome for the same inputs will be selected.Test classes configured as must-run via
PredictiveTestSelectionExtension.getMustRun()
or the@MustRun
annotation will only be selected if there was no prior execution with a successful or flaky outcome for the same inputs.
-
-
Method Details
-
values
Deprecated.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
Deprecated.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
-
PredictiveTestSelectionMode