aboutsummaryrefslogtreecommitdiff
path: root/test/src/model/FunctionTest.kt
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-01-14 19:38:58 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-01-14 19:38:58 +0100
commitf36d9b0e4f336de7e35dcfa33934ab287b76d964 (patch)
tree9beb706729788f4126f1270c4abfe3e0bcb71481 /test/src/model/FunctionTest.kt
parent60e610ebdd86663bedf113d2235ac3c8364171d0 (diff)
downloaddokka-f36d9b0e4f336de7e35dcfa33934ab287b76d964.tar.gz
dokka-f36d9b0e4f336de7e35dcfa33934ab287b76d964.tar.bz2
dokka-f36d9b0e4f336de7e35dcfa33934ab287b76d964.zip
show default values of parameters in generated documentation
Diffstat (limited to 'test/src/model/FunctionTest.kt')
-rw-r--r--test/src/model/FunctionTest.kt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/src/model/FunctionTest.kt b/test/src/model/FunctionTest.kt
index 299f33a8..c648cb55 100644
--- a/test/src/model/FunctionTest.kt
+++ b/test/src/model/FunctionTest.kt
@@ -194,4 +194,18 @@ Documentation""", content.description.toTestString())
}
}
}
+
+ Test fun functionWithDefaultParameter() {
+ verifyModel("test/data/functions/functionWithDefaultParameter.kt") { model ->
+ with(model.members.single().members.single()) {
+ with(details.elementAt(2)) {
+ val value = details(DocumentationNode.Kind.Value)
+ assertEquals(1, value.count())
+ with(value[0]) {
+ assertEquals("\"\"", name)
+ }
+ }
+ }
+ }
+ }
}