diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2014-12-30 15:35:00 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2014-12-30 15:35:00 +0100 |
commit | 3fc3e33a0eff0198ed89cc94197cb21653bf1ca2 (patch) | |
tree | 876215d35aa29f49d25645ad92edfe190f3364e6 /test/src/format/HtmlFormatTest.kt | |
parent | feca80b65581e688b1e9a3e807dfce2e17fd4a13 (diff) | |
download | dokka-3fc3e33a0eff0198ed89cc94197cb21653bf1ca2.tar.gz dokka-3fc3e33a0eff0198ed89cc94197cb21653bf1ca2.tar.bz2 dokka-3fc3e33a0eff0198ed89cc94197cb21653bf1ca2.zip |
fix formatting of overload signatures
Diffstat (limited to 'test/src/format/HtmlFormatTest.kt')
-rw-r--r-- | test/src/format/HtmlFormatTest.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/HtmlFormatTest.kt b/test/src/format/HtmlFormatTest.kt index a47b5774..881a7828 100644 --- a/test/src/format/HtmlFormatTest.kt +++ b/test/src/format/HtmlFormatTest.kt @@ -18,4 +18,10 @@ public class HtmlFormatTest { htmlService.appendNodes(tempLocation, output, model.members.single().members) } } + + Test fun overloads() { + verifyOutput("test/data/format/overloads.kt", ".html") { model, output -> + htmlService.appendNodes(tempLocation, output, model.members) + } + } } |