aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2016-04-28 17:55:46 +0200
committerDmitry Jemerov <yole@jetbrains.com>2016-04-28 17:55:46 +0200
commit03d567b763839323ab13d2f385395b221da06023 (patch)
tree09a60efbb9ff626f0773a823a9acf0c3a94bddb5 /core/src/test/kotlin
parent25278e2697af68788f8efdbe32b29f0ed42f33b4 (diff)
downloaddokka-03d567b763839323ab13d2f385395b221da06023.tar.gz
dokka-03d567b763839323ab13d2f385395b221da06023.tar.bz2
dokka-03d567b763839323ab13d2f385395b221da06023.zip
SOE protection when calculating type signature. Resolves #69
Diffstat (limited to 'core/src/test/kotlin')
-rw-r--r--core/src/test/kotlin/format/HtmlFormatTest.kt4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/HtmlFormatTest.kt b/core/src/test/kotlin/format/HtmlFormatTest.kt
index 0b4f9958..9936b8e2 100644
--- a/core/src/test/kotlin/format/HtmlFormatTest.kt
+++ b/core/src/test/kotlin/format/HtmlFormatTest.kt
@@ -168,6 +168,10 @@ class HtmlFormatTest {
verifyHtmlNode("returnWithLink")
}
+ @Test fun linkWithStarProjection() {
+ verifyHtmlNode("linkWithStarProjection", withKotlinRuntime = true)
+ }
+
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)