Interface KotlinTargetWithTests
-
- All Implemented Interfaces:
-
org.gradle.api.Named,org.gradle.api.attributes.HasAttributes,org.jetbrains.kotlin.gradle.plugin.HasProject,org.jetbrains.kotlin.gradle.plugin.KotlinTarget,org.jetbrains.kotlin.tooling.core.HasExtras,org.jetbrains.kotlin.tooling.core.HasMutableExtras
public interface KotlinTargetWithTests<E extends KotlinExecution.ExecutionSource, T extends KotlinTargetTestRun<E>> implements KotlinTarget
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classKotlinTargetWithTests.Companion
-
Method Summary
Modifier and Type Method Description abstract NamedDomainObjectContainer<T>getTestRuns()The container with the test run executions. -
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinTarget
attributes, attributes, getApiElementsConfigurationName, getArtifactsTaskName, getCompilations, getComponents, getDisambiguationClassifier, getName, getOverrideDisambiguationClassifierOnIdeImport, getPlatformType, getPreset, getPublishable, getRuntimeElementsConfigurationName, getSourcesElementsConfigurationName, getTargetName, getUseDisambiguationClassifierAsSourceSetNamePrefix, mavenPublication, mavenPublication, withSourcesJar -
Methods inherited from class org.gradle.api.attributes.HasAttributes
getAttributes -
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.HasProject
getProject -
Methods inherited from class org.jetbrains.kotlin.tooling.core.HasMutableExtras
getExtras -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getTestRuns
abstract NamedDomainObjectContainer<T> getTestRuns()
The container with the test run executions. A target may automatically create and configure a test run by the name DEFAULT_TEST_RUN_NAME.
-
-
-
-