diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-23 15:21:03 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2017-02-23 15:21:03 +0100 |
commit | a39c7a161282d132d08bcf89eed0213374a574e9 (patch) | |
tree | 973c36ded09cfd3a92b1fbfef947503b5ee71afe /core/src/test/kotlin/format | |
parent | 287c8207f6c7534ac9c5dfbc6e2ce10fae9a696b (diff) | |
download | dokka-a39c7a161282d132d08bcf89eed0213374a574e9.tar.gz dokka-a39c7a161282d132d08bcf89eed0213374a574e9.tar.bz2 dokka-a39c7a161282d132d08bcf89eed0213374a574e9.zip |
Allow specifying implicit platforms for each source root
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r-- | core/src/test/kotlin/format/MarkdownFormatTest.kt | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 4dd01a20..967bc5e4 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -1,9 +1,6 @@ package org.jetbrains.dokka.tests -import org.jetbrains.dokka.DocumentationModule -import org.jetbrains.dokka.DocumentationNode -import org.jetbrains.dokka.KotlinLanguageService -import org.jetbrains.dokka.MarkdownFormatService +import org.jetbrains.dokka.* import org.junit.Test class MarkdownFormatTest { @@ -245,6 +242,16 @@ class MarkdownFormatTest { verifyMarkdownPackage("sinceKotlin") } + @Test fun multiplePlatforms() { + val module = DocumentationModule("test") + val sourcePath = "testdata/format/multiplatform/foo.kt" + appendDocumentation(module, contentRootFromPath(sourcePath), implicitPlatforms = listOf("JVM")) + appendDocumentation(module, contentRootFromPath("testdata/format/multiplatform/bar.kt"), implicitPlatforms = listOf("JS")) + verifyModelOutput(module, ".package.md", sourcePath) { model, output -> + markdownService.createOutputBuilder(output, tempLocation).appendNodes(model.members) + } + } + private fun verifyMarkdownPackage(fileName: String, withKotlinRuntime: Boolean = false) { verifyOutput("testdata/format/$fileName.kt", ".package.md", withKotlinRuntime = withKotlinRuntime) { model, output -> markdownService.createOutputBuilder(output, tempLocation).appendNodes(model.members) |