diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2020-10-08 20:37:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 20:37:55 +0200 |
commit | e54d9b20f5a4935d0089a77dbea16c27c065cf48 (patch) | |
tree | 1dc85acdb92f6bc3b3feff68d280c187d1c8eb48 /plugins/base/src/test/kotlin/content/params | |
parent | b278dcc8fa854d7f708196f91c7e0efbbe9667ef (diff) | |
download | dokka-e54d9b20f5a4935d0089a77dbea16c27c065cf48.tar.gz dokka-e54d9b20f5a4935d0089a77dbea16c27c065cf48.tar.bz2 dokka-e54d9b20f5a4935d0089a77dbea16c27c065cf48.zip |
Handle multiple authors (#1539)
Diffstat (limited to 'plugins/base/src/test/kotlin/content/params')
-rw-r--r-- | plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt index 2dce7e28..cf4fa2e7 100644 --- a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt +++ b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt @@ -113,6 +113,7 @@ class ContentForParamsTest : AbstractCoreTest() { |package test | /** | * @author Kordyjan + | * @author Woolfy | * @since 0.11 | */ |fun function(abc: String) { @@ -141,8 +142,15 @@ class ContentForParamsTest : AbstractCoreTest() { ) } after { - unnamedTag("Author") { group { +"Kordyjan" } } - unnamedTag("Since") { group { +"0.11" } } + unnamedTag("Author") { + comment { + +"Kordyjan" + } + comment { + +"Woolfy" + } + } + unnamedTag("Since") { comment { +"0.11" } } } } } @@ -189,8 +197,8 @@ class ContentForParamsTest : AbstractCoreTest() { } after { group { pWrapped("comment to function") } - unnamedTag("Author") { group { +"Kordyjan" } } - unnamedTag("Since") { group { +"0.11" } } + unnamedTag("Author") { comment { +"Kordyjan" } } + unnamedTag("Since") { comment { +"0.11" } } } } } @@ -537,8 +545,8 @@ class ContentForParamsTest : AbstractCoreTest() { } after { group { pWrapped("comment to function") } - unnamedTag("Author") { group { +"Kordyjan" } } - unnamedTag("Since") { group { +"0.11" } } + unnamedTag("Author") { comment { +"Kordyjan" } } + unnamedTag("Since") { comment { +"0.11" } } header(2) { +"Parameters" } group { |