diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-02 12:25:00 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-03-02 12:25:00 +0100 |
commit | cad221f454adceb12d74fc563788b3d8247e44f6 (patch) | |
tree | 6e0ec083098476cc284b51bc19e03e8f4c5e1216 /test/src | |
parent | f9172b3a632181ee9b7ab5d674e537f4a71874eb (diff) | |
download | dokka-cad221f454adceb12d74fc563788b3d8247e44f6.tar.gz dokka-cad221f454adceb12d74fc563788b3d8247e44f6.tar.bz2 dokka-cad221f454adceb12d74fc563788b3d8247e44f6.zip |
represent nullability in doc model instead of appending ? to type name
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/format/MarkdownFormatTest.kt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/MarkdownFormatTest.kt b/test/src/format/MarkdownFormatTest.kt index 0452645a..7164fdee 100644 --- a/test/src/format/MarkdownFormatTest.kt +++ b/test/src/format/MarkdownFormatTest.kt @@ -142,4 +142,10 @@ public class MarkdownFormatTest { markdownService.appendNodes(tempLocation, output, model.members.single().members) } } + + Test fun nullability() { + verifyOutput("test/data/format/nullability.kt", ".md") { model, output -> + markdownService.appendNodes(tempLocation, output, model.members.single().members) + } + } } |