aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/transformers
diff options
context:
space:
mode:
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")
}
}