From 1574339f6950c8662e9b480dc0c3f63403bfdfab Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 28 Apr 2016 16:17:10 +0200 Subject: test to ensure KT-10998 doesn't happen in Dokka --- core/src/test/kotlin/format/HtmlFormatTest.kt | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/src/test/kotlin/format') diff --git a/core/src/test/kotlin/format/HtmlFormatTest.kt b/core/src/test/kotlin/format/HtmlFormatTest.kt index 0fc56361..0b4f9958 100644 --- a/core/src/test/kotlin/format/HtmlFormatTest.kt +++ b/core/src/test/kotlin/format/HtmlFormatTest.kt @@ -164,6 +164,10 @@ class HtmlFormatTest { verifyHtmlNode("markdownInLinks") } + @Test fun returnWithLink() { + verifyHtmlNode("returnWithLink") + } + 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