From 2e5b40d69e15c30474cf8564b08587f15ed8e383 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 28 Apr 2016 12:58:06 +0200 Subject: correctly render Markdown in link text (KT-11791) --- core/src/test/kotlin/format/HtmlFormatTest.kt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'core/src/test') diff --git a/core/src/test/kotlin/format/HtmlFormatTest.kt b/core/src/test/kotlin/format/HtmlFormatTest.kt index 8045d38c..0fc56361 100644 --- a/core/src/test/kotlin/format/HtmlFormatTest.kt +++ b/core/src/test/kotlin/format/HtmlFormatTest.kt @@ -8,7 +8,7 @@ import org.jetbrains.kotlin.config.KotlinSourceRoot import org.junit.Test import java.io.File -public class HtmlFormatTest { +class HtmlFormatTest { private val htmlService = HtmlFormatService(InMemoryLocationService, KotlinLanguageService(), HtmlTemplateService.default()) @Test fun classWithCompanionObject() { @@ -159,5 +159,16 @@ public class HtmlFormatTest { htmlService.appendNodes(tempLocation, output, model.members.single().members) } } + + @Test fun markdownInLinks() { + verifyHtmlNode("markdownInLinks") + } + + private fun verifyHtmlNode(fileName: String, withKotlinRuntime: Boolean = false) { + verifyOutput("testdata/format/$fileName.kt", ".html", withKotlinRuntime = withKotlinRuntime) { model, output -> + htmlService.appendNodes(tempLocation, output, model.members.single().members) + } + } + } -- cgit