diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-07 15:48:30 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-02-07 15:48:30 +0300 |
commit | cf4bb4673730cc0787784380fc986efec8f8e9fb (patch) | |
tree | 223dbbd5dfb2ef459ccbabb5a39418d65bedda9a /core/src/test/kotlin/format | |
parent | f4f7642c90fef06f04cadc57835ed431ace69802 (diff) | |
download | dokka-cf4bb4673730cc0787784380fc986efec8f8e9fb.tar.gz dokka-cf4bb4673730cc0787784380fc986efec8f8e9fb.tar.bz2 dokka-cf4bb4673730cc0787784380fc986efec8f8e9fb.zip |
KT-16197 WebDemo: No empty strings
#KT-16197 fixed
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r-- | core/src/test/kotlin/format/KotlinWebSiteRunnableSamplesFormatTest.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/KotlinWebSiteRunnableSamplesFormatTest.kt b/core/src/test/kotlin/format/KotlinWebSiteRunnableSamplesFormatTest.kt index 742d2908..2a9900af 100644 --- a/core/src/test/kotlin/format/KotlinWebSiteRunnableSamplesFormatTest.kt +++ b/core/src/test/kotlin/format/KotlinWebSiteRunnableSamplesFormatTest.kt @@ -20,6 +20,10 @@ class KotlinWebSiteRunnableSamplesFormatTest { verifyKWSNodeByName("sampleWithAsserts", "a") } + @Test fun newLinesInSamples() { + verifyKWSNodeByName("newLinesInSamples", "foo") + } + private fun verifyKWSNodeByName(fileName: String, name: String) { verifyOutput("testdata/format/website-samples/$fileName.kt", ".md", format = "kotlin-website-samples") { model, output -> kwsService.createOutputBuilder(output, tempLocation).appendNodes(model.members.single().members.filter { it.name == name }) |