diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-09 20:59:58 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-09 20:59:58 +0100 |
commit | e17eaa5fbc296bab0f32e8169d50fea06a6de581 (patch) | |
tree | e8048ee2dc036209a632966daf5f948984371329 /test/src | |
parent | 1a4794397f3e5db8dac12d1797edd16c121de21f (diff) | |
download | dokka-e17eaa5fbc296bab0f32e8169d50fea06a6de581.tar.gz dokka-e17eaa5fbc296bab0f32e8169d50fea06a6de581.tar.bz2 dokka-e17eaa5fbc296bab0f32e8169d50fea06a6de581.zip |
nice rendering for deprecated members
Diffstat (limited to 'test/src')
-rw-r--r-- | test/src/format/HtmlFormatTest.kt | 9 | ||||
-rw-r--r-- | test/src/model/ClassTest.kt | 3 |
2 files changed, 10 insertions, 2 deletions
diff --git a/test/src/format/HtmlFormatTest.kt b/test/src/format/HtmlFormatTest.kt index 881a7828..47fe9c4e 100644 --- a/test/src/format/HtmlFormatTest.kt +++ b/test/src/format/HtmlFormatTest.kt @@ -24,4 +24,13 @@ public class HtmlFormatTest { htmlService.appendNodes(tempLocation, output, model.members) } } + + Test fun deprecated() { + verifyOutput("test/data/format/deprecated.kt", ".package.html") { model, output -> + htmlService.appendNodes(tempLocation, output, model.members) + } + verifyOutput("test/data/format/deprecated.kt", ".class.html") { model, output -> + htmlService.appendNodes(tempLocation, output, model.members.single().members) + } + } } diff --git a/test/src/model/ClassTest.kt b/test/src/model/ClassTest.kt index ae82a4f1..f21c5c57 100644 --- a/test/src/model/ClassTest.kt +++ b/test/src/model/ClassTest.kt @@ -183,8 +183,7 @@ public class ClassTest { Test fun annotatedClassWithAnnotationParameters() { verifyModel("test/data/classes/annotatedClassWithAnnotationParameters.kt") { model -> with(model.members.single().members.single()) { - assertEquals(1, annotations.count()) - with(annotations[0]) { + with(deprecation!!) { assertEquals("deprecated", name) assertEquals(Content.Empty, content) assertEquals(DocumentationNode.Kind.Annotation, kind) |