Package org.gradle.jvm.test
Interface JvmTestSuiteBinarySpec
-
- All Superinterfaces:
Binary
,BinarySpec
,Buildable
,BuildableComponentSpec
,CheckableComponentSpec
,ComponentSpec
,JvmBinarySpec
,ModelElement
,Named
,TestSuiteBinarySpec
,org.gradle.jvm.internal.WithDependencies
- All Known Subinterfaces:
JUnitTestSuiteBinarySpec
@Incubating public interface JvmTestSuiteBinarySpec extends TestSuiteBinarySpec, JvmBinarySpec, org.gradle.jvm.internal.WithDependencies
Base type of JVM test suite binaries.- Since:
- 2.11
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
JvmTestSuiteBinarySpec.JvmTestSuiteTasks
Provides direct access to important build tasks of JVM test suites.-
Nested classes/interfaces inherited from interface org.gradle.api.Named
Named.Namer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.gradle.jvm.internal.DependencyResolvingClasspath
getRuntimeClasspath()
JvmTestSuiteBinarySpec.JvmTestSuiteTasks
getTasks()
The set of tasks associated with this binary.JvmBinarySpec
getTestedBinary()
Returns the binary tested by this test suite.JvmTestSuiteSpec
getTestSuite()
Returns the test suite that this binary belongs to.-
Methods inherited from interface org.gradle.platform.base.Binary
getDisplayName
-
Methods inherited from interface org.gradle.platform.base.BinarySpec
getInputs, getSources, isBuildable
-
Methods inherited from interface org.gradle.api.Buildable
getBuildDependencies
-
Methods inherited from interface org.gradle.api.BuildableComponentSpec
builtBy, getBuildTask, hasBuildDependencies, setBuildTask
-
Methods inherited from interface org.gradle.api.CheckableComponentSpec
checkedBy, getCheckTask, setCheckTask
-
Methods inherited from interface org.gradle.platform.base.ComponentSpec
getProjectPath
-
Methods inherited from interface org.gradle.jvm.JvmBinarySpec
getClassesDir, getResourcesDir, getTargetPlatform, getToolChain, setClassesDir, setResourcesDir, setTargetPlatform, setToolChain
-
Methods inherited from interface org.gradle.model.ModelElement
getDisplayName, getName
-
-
-
-
Method Detail
-
getTestSuite
JvmTestSuiteSpec getTestSuite()
Description copied from interface:TestSuiteBinarySpec
Returns the test suite that this binary belongs to.- Specified by:
getTestSuite
in interfaceTestSuiteBinarySpec
-
getTestedBinary
JvmBinarySpec getTestedBinary()
Description copied from interface:TestSuiteBinarySpec
Returns the binary tested by this test suite.- Specified by:
getTestedBinary
in interfaceTestSuiteBinarySpec
-
getTasks
JvmTestSuiteBinarySpec.JvmTestSuiteTasks getTasks()
Description copied from interface:BinarySpec
The set of tasks associated with this binary.- Specified by:
getTasks
in interfaceBinarySpec
-
getRuntimeClasspath
org.gradle.jvm.internal.DependencyResolvingClasspath getRuntimeClasspath()
-
-