aboutsummaryrefslogtreecommitdiff
path: root/test/src
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-27 17:30:04 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-27 17:30:04 +0100
commit63faa143fbc841d0e21a9903c51b3d9ab0216b92 (patch)
treeca1b87cd6d3fa650afb07181d7a458ca60dc0192 /test/src
parent78a8fb9ff108386ce39cb8935ef3d9a4f92df426 (diff)
downloaddokka-63faa143fbc841d0e21a9903c51b3d9ab0216b92.tar.gz
dokka-63faa143fbc841d0e21a9903c51b3d9ab0216b92.tar.bz2
dokka-63faa143fbc841d0e21a9903c51b3d9ab0216b92.zip
process inline doc tags in values of block tags
Diffstat (limited to 'test/src')
-rw-r--r--test/src/format/MarkdownFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt
index 2ee4fa46..49d2ec1b 100644
--- a/test/src/format/MarkdownFormatTest.kt
+++ b/test/src/format/MarkdownFormatTest.kt
@@ -130,4 +130,10 @@ public class MarkdownFormatTest {
markdownService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun javaCodeInParam() {
+ verifyOutput("test/data/format/javaCodeInParam.java", ".md") { model, output ->
+ markdownService.appendNodes(tempLocation, output, model.members.single().members)
+ }
+ }
}