aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/transformers
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-06-12 12:44:48 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-06-15 13:15:30 +0200
commit4c9952dbfa2d9b304b10d6d3e43e2424e69fdfe8 (patch)
treee361f1e0874f4ff3eb008143604d75c52d882d32 /plugins/base/src/test/kotlin/transformers
parentc804fab6e15ce7974453388afbdeed1cae33ea83 (diff)
downloaddokka-4c9952dbfa2d9b304b10d6d3e43e2424e69fdfe8.tar.gz
dokka-4c9952dbfa2d9b304b10d6d3e43e2424e69fdfe8.tar.bz2
dokka-4c9952dbfa2d9b304b10d6d3e43e2424e69fdfe8.zip
Fix tests
Diffstat (limited to 'plugins/base/src/test/kotlin/transformers')
-rw-r--r--plugins/base/src/test/kotlin/transformers/ReportUndocumentedTransformerTest.kt14
1 files changed, 8 insertions, 6 deletions
diff --git a/plugins/base/src/test/kotlin/transformers/ReportUndocumentedTransformerTest.kt b/plugins/base/src/test/kotlin/transformers/ReportUndocumentedTransformerTest.kt
index 9b6c50da..f05abb1a 100644
--- a/plugins/base/src/test/kotlin/transformers/ReportUndocumentedTransformerTest.kt
+++ b/plugins/base/src/test/kotlin/transformers/ReportUndocumentedTransformerTest.kt
@@ -458,16 +458,17 @@ class ReportUndocumentedTransformerTest : AbstractCoreTest() {
pass {
reportUndocumented = true
analysisPlatform = Platform.common.toString()
- sourceSetName = "commonMain"
+ sourceSetID = "commonMain"
+ displayName = "commonMain"
sourceRoots = listOf("src/commonMain/kotlin")
}
pass {
reportUndocumented = true
analysisPlatform = Platform.jvm.toString()
- sourceSetName = "jvmMain"
+ sourceSetID = "jvmMain"
+ displayName = "jvmMain"
sourceRoots = listOf("src/jvmMain/kotlin")
- dependentSourceRoots = listOf("src/commonMain/kotlin")
dependentSourceSets = listOf("commonMain")
}
}
@@ -500,16 +501,17 @@ class ReportUndocumentedTransformerTest : AbstractCoreTest() {
pass {
reportUndocumented = true
analysisPlatform = Platform.common.toString()
- sourceSetName = "commonMain"
+ sourceSetID = "commonMain"
+ displayName = "commonMain"
sourceRoots = listOf("src/commonMain/kotlin")
}
pass {
reportUndocumented = true
analysisPlatform = Platform.jvm.toString()
- sourceSetName = "jvmMain"
+ sourceSetID = "jvmMain"
+ displayName = "jvmMain"
sourceRoots = listOf("src/jvmMain/kotlin")
- dependentSourceRoots = listOf("src/commonMain/kotlin")
dependentSourceSets = listOf("commonMain")
}
}