Package org.gradle.api.plugins
Class JavaTestFixturesPlugin
- java.lang.Object
-
- org.gradle.api.plugins.JavaTestFixturesPlugin
-
public abstract class JavaTestFixturesPlugin extends java.lang.Object implements Plugin<Project>
Adds support for producing test fixtures. This plugin will automatically create a `testFixtures` source set, and wires the tests to use those test fixtures automatically. Other projects may consume the test fixtures of the current project by declaring a dependency using theDependencyHandler.testFixtures(Object)
method. This should really be named `JVMTestFixturesPlugin`, as there is no requirement for the test fixtures to be written in Java, any supported JVM language will work.- Since:
- 5.6
- See Also:
- Java Test Fixtures reference
-
-
Constructor Summary
Constructors Constructor Description JavaTestFixturesPlugin()
-
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.
-