diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-14 14:00:55 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-14 14:00:55 +0100 |
commit | faad901ed29f802d7b304c06ae62954b149960e7 (patch) | |
tree | 6af5015bf1d03fc051678e58bfb81580bd9bcc68 /test/src/format | |
parent | cd21e1fea43c0b7fa8013e3db7f49fe2b600b7f8 (diff) | |
download | dokka-faad901ed29f802d7b304c06ae62954b149960e7.tar.gz dokka-faad901ed29f802d7b304c06ae62954b149960e7.tar.bz2 dokka-faad901ed29f802d7b304c06ae62954b149960e7.zip |
correcty distinguish 'val' and 'var' properties
Diffstat (limited to 'test/src/format')
-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 f7fc6da0..71ad1773 100644 --- a/test/src/format/MarkdownFormatTest.kt +++ b/test/src/format/MarkdownFormatTest.kt @@ -61,4 +61,10 @@ public class MarkdownFormatTest { markdownService.appendNodes(tempLocation, output, model.members.single().members) } } + + Test fun propertyVar() { + verifyOutput("test/data/format/propertyVar.kt", ".md") { model, output -> + markdownService.appendNodes(tempLocation, output, model.members.single().members) + } + } } |