diff options
Diffstat (limited to 'test/src')
| -rw-r--r-- | test/src/TestAPI.kt | 3 | ||||
| -rw-r--r-- | test/src/format/MarkdownFormatTest.kt | 13 |
2 files changed, 12 insertions, 4 deletions
diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index 7d0d3bdd..4d64014e 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -4,7 +4,6 @@ import org.jetbrains.kotlin.cli.common.messages.* import com.intellij.openapi.util.* import kotlin.test.fail import org.jetbrains.dokka.* -import org.jetbrains.kotlin.descriptors.DeclarationDescriptor import java.io.File import com.intellij.openapi.application.PathManager import org.junit.Assert @@ -54,7 +53,7 @@ public fun verifyOutput(path: String, outputExtension: String, outputGenerator: verifyModel(path) { val output = StringBuilder() outputGenerator(it, output) - val expectedOutput = File(path.replace(".kt", outputExtension)).readText() + val expectedOutput = File(path.replace(".kt", outputExtension)).readText().replace("\r\n", "\n") Assert.assertEquals(expectedOutput, output.toString()) } } diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt index 3d32743f..a5a62e13 100644 --- a/test/src/format/MarkdownFormatTest.kt +++ b/test/src/format/MarkdownFormatTest.kt @@ -2,8 +2,6 @@ package org.jetbrains.dokka.tests import org.junit.Test import org.jetbrains.dokka.* -import java.io.File -import kotlin.test.assertEquals public class MarkdownFormatTest { private val markdownService = MarkdownFormatService(InMemoryLocationService, KotlinLanguageService()) @@ -46,4 +44,15 @@ public class MarkdownFormatTest { markdownService.appendNodes(tempLocation, output, model.members.single().members) } } + + Test fun enumClass() { + verifyOutput("test/data/format/enumClass.kt", ".md") { model, output -> + markdownService.appendNodes(tempLocation, output, model.members.single().members) + } + verifyOutput("test/data/format/enumClass.kt", ".value.md") { model, output -> + val enumClassNode = model.members.single().members[0] + markdownService.appendNodes(tempLocation, output, + enumClassNode.members.filter { it.name == "LOCAL_CONTINUE_AND_BREAK" }) + } + } } |
