Enum Class TestEngine

java.lang.Object
java.lang.Enum<TestEngine>
org.javamodularity.moduleplugin.TestEngine
All Implemented Interfaces:
Serializable, Comparable<TestEngine>, Constable

public enum TestEngine extends Enum<TestEngine>
  • Enum Constant Details

    • JUNIT_4

      public static final TestEngine JUNIT_4
    • JUNIT_5_API

      public static final TestEngine JUNIT_5_API
    • JUNIT_5

      public static final TestEngine JUNIT_5
    • JUNIT_5_PARAMS

      public static final TestEngine JUNIT_5_PARAMS
    • JUNIT_PLATFORM_COMMONS

      public static final TestEngine JUNIT_PLATFORM_COMMONS
    • JUNIT_JUPITER_ENGINE

      public static final TestEngine JUNIT_JUPITER_ENGINE
    • JUNIT_PLATFORM_ENGINE

      public static final TestEngine JUNIT_PLATFORM_ENGINE
    • TESTNG

      public static final TestEngine TESTNG
    • ASSERTJ

      public static final TestEngine ASSERTJ
    • TRUTH

      public static final TestEngine TRUTH
    • MOCKITO

      public static final TestEngine MOCKITO
    • EASYMOCK

      public static final TestEngine EASYMOCK
    • SPOCK

      public static final TestEngine SPOCK
  • Field Details

    • moduleName

      public final String moduleName
    • addOpens

      public final String addOpens
    • additionalTaskOptions

      public final List<TaskOption> additionalTaskOptions
  • Method Details

    • values

      public static TestEngine[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static TestEngine valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • selectMultiple

      public static Collection<TestEngine> selectMultiple(org.gradle.api.Project project, Set<File> files)