Enum PredictiveTestSelectionMode
java.lang.Object
java.lang.Enum<PredictiveTestSelectionMode>
com.gradle.develocity.agent.gradle.test.PredictiveTestSelectionMode
- All Implemented Interfaces:
Serializable
,Comparable<PredictiveTestSelectionMode>
,java.lang.constant.Constable
Mode to use for selecting tests.
- Since:
- 3.17
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionIn this mode, test classes are selected according to their predicted relevance.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
Returns the enum constant of this type with the specified name.static PredictiveTestSelectionMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
RELEVANT_TESTS
In this mode, test classes are selected according to their predicted relevance. -
REMAINING_TESTS
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
PredictiveTestSelectionConfiguration.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
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
-