aboutsummaryrefslogtreecommitdiff
path: root/test/src/format
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-02-24 16:24:00 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-02-24 16:24:00 +0100
commita60d8ba79fd823260582b558f9f61229b12f4f6e (patch)
treeb5e3dbeb7ed7271dfdfd35a01cde61db676c5dc9 /test/src/format
parentb1296e64749b9d7250fe0284f0322ea7713c879a (diff)
downloaddokka-a60d8ba79fd823260582b558f9f61229b12f4f6e.tar.gz
dokka-a60d8ba79fd823260582b558f9f61229b12f4f6e.tar.bz2
dokka-a60d8ba79fd823260582b558f9f61229b12f4f6e.zip
understand @deprecated tag in javadoc
Diffstat (limited to 'test/src/format')
-rw-r--r--test/src/format/HtmlFormatTest.kt6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/src/format/HtmlFormatTest.kt b/test/src/format/HtmlFormatTest.kt
index feeab186..85badf8e 100644
--- a/test/src/format/HtmlFormatTest.kt
+++ b/test/src/format/HtmlFormatTest.kt
@@ -111,4 +111,10 @@ public class HtmlFormatTest {
htmlService.appendNodes(tempLocation, output, model.members.single().members)
}
}
+
+ Test fun javaDeprecated() {
+ verifyOutput("test/data/format/javaDeprecated.java", ".html") { model, output ->
+ htmlService.appendNodes(tempLocation, output, model.members.single().members.single { it.name == "Foo" }.members.filter { it.name == "foo" })
+ }
+ }
}