aboutsummaryrefslogtreecommitdiff
path: root/testApi/src/main/kotlin
diff options
context:
space:
mode:
authorBłażej Kardyś <bkardys@virtuslab.com>2020-05-19 19:02:58 +0200
committerBłażej Kardyś <bkardys@virtuslab.com>2020-05-20 13:31:00 +0200
commit6b85bb2ec2764a2c8b14717ef8e013a0f3c6e99f (patch)
treef29b4101c306d824f39787d817bd038fbf740779 /testApi/src/main/kotlin
parentff450fedb3c8bdc318b55954bc37d93b30b9277c (diff)
downloaddokka-6b85bb2ec2764a2c8b14717ef8e013a0f3c6e99f.tar.gz
dokka-6b85bb2ec2764a2c8b14717ef8e013a0f3c6e99f.tar.bz2
dokka-6b85bb2ec2764a2c8b14717ef8e013a0f3c6e99f.zip
Merging of platform dependent hints in sourceset tree
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,