blob: 6893c65f1c2c06fecb54e3301934e630efd68ba3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
package utils
import org.jetbrains.dokka.model.Module
import org.jetbrains.dokka.model.doc.DocumentationNode
import testApi.testRunner.AbstractCoreTest
abstract class AbstractModelTest(val path: String? = null, val pkg: String) : ModelDSL(), AssertDSL {
fun inlineModelTest(
query: String,
platform: String = "jvm",
targetList: List<String> = listOf("jvm"),
prependPackage: Boolean = true,
block: Module.() -> Unit
) {
val configuration = dokkaConfiguration {
passes {
pass {
sourceRoots = listOf("src/")
analysisPlatform = platform
targets = targetList
}
}
}
val prepend = path.let { p -> p?.let { "|$it\n" } ?: "" } + if(prependPackage) "|package $pkg" else ""
testInline(("$prepend\n$query").trim().trimIndent(), configuration) {
documentablesTransformationStage = block
}
}
}
|