aboutsummaryrefslogtreecommitdiff
path: root/testApi/src/main/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'testApi/src/main/kotlin')
-rw-r--r--testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt2
1 files changed, 2 insertions, 0 deletions
diff --git a/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt b/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
index 43d99dad..6c323ea2 100644
--- a/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
+++ b/testApi/src/main/kotlin/testApi/testRunner/TestRunner.kt
@@ -171,6 +171,7 @@ abstract class AbstractCoreTest {
var classpath: List<String> = emptyList(),
var sourceRoots: List<String> = emptyList(),
var dependentSourceRoots: List<String> = emptyList(),
+ var dependentSourceSets: List<String> = emptyList(),
var samples: List<String> = emptyList(),
var includes: List<String> = emptyList(),
var includeNonPublic: Boolean = true,
@@ -198,6 +199,7 @@ abstract class AbstractCoreTest {
classpath = classpath,
sourceRoots = sourceRoots.map { SourceRootImpl(it) },
dependentSourceRoots = dependentSourceRoots.map { SourceRootImpl(it) },
+ dependentSourceSets = dependentSourceSets,
samples = samples,
includes = includes,
includeNonPublic = includeNonPublic,