diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 15:24:32 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2017-11-21 17:19:49 +0300 |
commit | ebcea5c3ad6248c5a02adc5740103a23a5108c58 (patch) | |
tree | 3dc7dbc15917862175846ff11bed103f3a27fe98 /core/src/test/kotlin/format | |
parent | 80bde3cb243b324df162a16d23f9dfd3e0ab2597 (diff) | |
download | dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.tar.gz dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.tar.bz2 dokka-ebcea5c3ad6248c5a02adc5740103a23a5108c58.zip |
Fix find node by signature when referencing type parameter
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r-- | core/src/test/kotlin/format/MarkdownFormatTest.kt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/MarkdownFormatTest.kt b/core/src/test/kotlin/format/MarkdownFormatTest.kt index 5fbd80fb..a2891c47 100644 --- a/core/src/test/kotlin/format/MarkdownFormatTest.kt +++ b/core/src/test/kotlin/format/MarkdownFormatTest.kt @@ -388,6 +388,10 @@ class MarkdownFormatTest { verifyMarkdownNodeByName("extensionScope", "test") } + @Test fun typeParameterReference() { + verifyMarkdownNode("typeParameterReference") + } + private fun buildMultiplePlatforms(path: String): DocumentationModule { val module = DocumentationModule("test") val options = DocumentationOptions("", "html", generateIndexPages = false, noStdlibLink = true) |