blob: 69c4f0d2d0f6e3e35b9af6e41491217d3a6e9398 (
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
34
35
36
37
38
39
|
package utils
import org.jetbrains.dokka.plugability.DokkaPlugin
import org.jetbrains.dokka.model.DModule
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,
cleanupOutput: Boolean = true,
pluginsOverrides: List<DokkaPlugin> = emptyList(),
block: DModule.() -> 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(
query = ("$prepend\n$query").trim().trimIndent(),
configuration = configuration,
cleanupOutput = cleanupOutput,
pluginOverrides = pluginsOverrides
) {
documentablesTransformationStage = block
}
}
}
|