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 public enum PredictiveTestSelectionMode extends Enum<PredictiveTestSelectionMode>
Deprecated.
since 3.17, replaced by PredictiveTestSelectionMode
Mode to use for selecting tests.
Since:
3.14
  • Enum Constant Details

    • RELEVANT_TESTS

      public static final PredictiveTestSelectionMode RELEVANT_TESTS
      Deprecated.
      In this mode, test classes are selected according to their predicted relevance.
    • REMAINING_TESTS

      public static final PredictiveTestSelectionMode 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

      public static PredictiveTestSelectionMode[] 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

      public static PredictiveTestSelectionMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null