aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/content
diff options
context:
space:
mode:
authorPaweł Marks <pmarks@virtuslab.com>2020-03-31 08:39:01 +0200
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-03-31 16:02:09 +0200
commit6fec129cc61bd2a54f9d1111057c650430426013 (patch)
treef375410110c17bb3e68723bbbc0f60d382d96fba /plugins/base/src/test/kotlin/content
parent810f3c922fb4f11dc3fbdddee82d919189ed8526 (diff)
downloaddokka-6fec129cc61bd2a54f9d1111057c650430426013.tar.gz
dokka-6fec129cc61bd2a54f9d1111057c650430426013.tar.bz2
dokka-6fec129cc61bd2a54f9d1111057c650430426013.zip
Make PageContentBuilder to create proper content for all tags
Diffstat (limited to 'plugins/base/src/test/kotlin/content')
-rw-r--r--plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt47
1 files changed, 21 insertions, 26 deletions
diff --git a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt
index 9f8ebb00..6b86d727 100644
--- a/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt
+++ b/plugins/base/src/test/kotlin/content/params/ContentForParamsTest.kt
@@ -7,6 +7,7 @@ import org.junit.jupiter.api.Test
import utils.pWrapped
import utils.signature
import utils.signatureWithReceiver
+import utils.unnamedTag
class ContentForParamsTest : AbstractCoreTest() {
private val testConfiguration = dokkaConfiguration {
@@ -94,10 +95,8 @@ class ContentForParamsTest : AbstractCoreTest() {
signature("function", null, "abc" to "String")
header(3) { +"Description" }
platformHinted {
- header(4) { +"Author" }
- +"Kordyjan"
- header(4) { +"Since" }
- +"0.11"
+ unnamedTag("Author") { +"Kordyjan" }
+ unnamedTag("Since") { +"0.11" }
}
}
}
@@ -129,10 +128,8 @@ class ContentForParamsTest : AbstractCoreTest() {
header(3) { +"Description" }
platformHinted {
pWrapped("comment to function")
- header(4) { +"Author" }
- +"Kordyjan"
- header(4) { +"Since" }
- +"0.11"
+ unnamedTag("Author") { +"Kordyjan" }
+ unnamedTag("Since") { +"0.11" }
}
}
}
@@ -167,7 +164,7 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"abc"
- +"comment to param"
+ group { +"comment to param" }
}
}
}
@@ -206,15 +203,15 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"first"
- +"comment to first param"
+ group { +"comment to first param" }
}
group {
+"second"
- +"comment to second param"
+ group { +"comment to second param" }
}
group {
+"third"
- +"comment to third param"
+ group { +"comment to third param" }
}
}
}
@@ -251,15 +248,15 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"first"
- +"comment to first param"
+ group { +"comment to first param" }
}
group {
+"second"
- +"comment to second param"
+ group { +"comment to second param" }
}
group {
+"third"
- +"comment to third param"
+ group { +"comment to third param" }
}
}
}
@@ -297,11 +294,11 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"<receiver>"
- +"comment to receiver"
+ group { +"comment to receiver" }
}
group {
+"abc"
- +"comment to param"
+ group { +"comment to param" }
}
}
}
@@ -339,11 +336,11 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"first"
- +"comment to first param"
+ group { +"comment to first param" }
}
group {
+"third"
- +"comment to third param"
+ group { +"comment to third param" }
}
}
}
@@ -384,21 +381,19 @@ class ContentForParamsTest : AbstractCoreTest() {
table {
group {
+"first"
- +"comment to first param"
+ group { +"comment to first param" }
}
group {
+"second"
- +"comment to second param"
+ group { +"comment to second param" }
}
group {
+"third"
- +"comment to third param"
+ group { +"comment to third param" }
}
}
- header(4) { +"Author" }
- +"Kordyjan"
- header(4) { +"Since" }
- +"0.11"
+ unnamedTag("Author") { +"Kordyjan" }
+ unnamedTag("Since") { +"0.11" }
}
}
}