-
- All Implemented Interfaces:
-
org.gradle.api.Named
,org.jetbrains.kotlin.gradle.plugin.KotlinExecution
,org.jetbrains.kotlin.gradle.plugin.KotlinTargetExecution
,org.jetbrains.kotlin.gradle.plugin.KotlinTestRun
public interface KotlinTargetTestRun<ExecutionSource extends KotlinExecution.ExecutionSource> implements KotlinTestRun<ExecutionSource>, KotlinTargetExecution<ExecutionSource>
-
-
Method Summary
Modifier and Type Method Description abstract ExecutionSource
getExecutionSource()
The source of the executable code that this execution runs from. abstract KotlinTarget
getTarget()
-
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinTargetTestRun
filter, filter
-
Methods inherited from class org.jetbrains.kotlin.gradle.plugin.KotlinExecution
getName
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
-
-
Method Detail
-
getExecutionSource
abstract ExecutionSource getExecutionSource()
The source of the executable code that this execution runs from. It is usually set via members of execution source support interfaces, such as CompilationExecutionSourceSupport or ClasspathTestRunSourceSupport, or
setExecutionSourceFrom*
functions.
-
getTarget
abstract KotlinTarget getTarget()
-
-