diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-06-12 12:44:48 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-06-15 13:15:30 +0200 |
commit | 4c9952dbfa2d9b304b10d6d3e43e2424e69fdfe8 (patch) | |
tree | e361f1e0874f4ff3eb008143604d75c52d882d32 /plugins/base/src/test/kotlin/transformers | |
parent | c804fab6e15ce7974453388afbdeed1cae33ea83 (diff) | |
download | dokka-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.kt | 14 |
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") } } |