Package org.gradle.api.plugins
Class JvmTestSuitePlugin
- java.lang.Object
-
- org.gradle.api.plugins.JvmTestSuitePlugin
-
@Incubating public abstract class JvmTestSuitePlugin extends java.lang.Object implements Plugin<Project>
APlugin
that adds extensions for declaring, compiling and runningJvmTestSuite
s.This plugin provides conventions for several things:
- All other
JvmTestSuite
will use the JUnit Jupiter testing framework unless specified otherwise. - A single test suite target is added to each
JvmTestSuite
.
- Since:
- 7.3
- See Also:
- Test Suite plugin reference
- All other
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
DEFAULT_TEST_SUITE_NAME
-
Constructor Summary
Constructors Constructor Description JvmTestSuitePlugin()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
apply(Project project)
Apply this plugin to the given target object.
-
-
-
Field Detail
-
DEFAULT_TEST_SUITE_NAME
public static final java.lang.String DEFAULT_TEST_SUITE_NAME
- See Also:
- Constant Field Values
-
-