aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/format
diff options
context:
space:
mode:
authorSimon Ogorodnik <sem-oro@yandex.ru>2016-11-03 12:50:37 +0300
committerGitHub <noreply@github.com>2016-11-03 12:50:37 +0300
commit21b2fcb46a10acc2afdf94639cd208d15856fdc3 (patch)
tree39a117667b6383f4442a5e8fedeb214c93bd43c5 /core/src/test/kotlin/format
parentb64579c6d444a39882ceeef08bdc3eedb584e827 (diff)
downloaddokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.tar.gz
dokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.tar.bz2
dokka-21b2fcb46a10acc2afdf94639cd208d15856fdc3.zip
Fix for KT-14076 : empty visible div's (#108)
Fix for KT-14076 : empty visible div's
Diffstat (limited to 'core/src/test/kotlin/format')
-rw-r--r--core/src/test/kotlin/format/KotlinWebSiteFormatTest.kt4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/test/kotlin/format/KotlinWebSiteFormatTest.kt b/core/src/test/kotlin/format/KotlinWebSiteFormatTest.kt
index e6ef792a..e7419ec8 100644
--- a/core/src/test/kotlin/format/KotlinWebSiteFormatTest.kt
+++ b/core/src/test/kotlin/format/KotlinWebSiteFormatTest.kt
@@ -15,6 +15,10 @@ class KotlinWebSiteFormatTest {
verifyKWSNodeByName("returnTag", "indexOf")
}
+ @Test fun overloadGroup() {
+ verifyKWSNodeByName("overloadGroup", "magic")
+ }
+
private fun verifyKWSNodeByName(fileName: String, name: String) {
verifyOutput("testdata/format/website/$fileName.kt", ".md") { model, output ->
kwsService.createOutputBuilder(output, tempLocation).appendNodes(model.members.single().members.filter { it.name == name })