aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/content
diff options
context:
space:
mode:
authorMarcin Aman <marcin.aman@gmail.com>2020-11-12 12:01:00 +0100
committerGitHub <noreply@github.com>2020-11-12 12:01:00 +0100
commit6a1c05c2d340a6812a8b58d3027d8e5712db45a2 (patch)
treeb14c5b0a26fbb61bb5492b1a778e5df57fcd584d /plugins/base/src/test/kotlin/content
parent7db15c357a417ccd9ff8ad1f90f5aff84eec132f (diff)
downloaddokka-6a1c05c2d340a6812a8b58d3027d8e5712db45a2.tar.gz
dokka-6a1c05c2d340a6812a8b58d3027d8e5712db45a2.tar.bz2
dokka-6a1c05c2d340a6812a8b58d3027d8e5712db45a2.zip
Javadoc @inheritDoc tag support (#1608)
Diffstat (limited to 'plugins/base/src/test/kotlin/content')
-rw-r--r--plugins/base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt b/plugins/base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt
index 4bc33c03..27cdc389 100644
--- a/plugins/base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt
+++ b/plugins/base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt
@@ -213,7 +213,7 @@ class ContentForSeeAlsoTest : AbstractCoreTest() {
check {
assertEquals("kotlin.collections/Collection///PointingToDeclaration/", (this as ContentDRILink).address.toString())
}
- +"Collection"
+ +"kotlin.collections.Collection"
}
group { }
}
@@ -269,7 +269,7 @@ class ContentForSeeAlsoTest : AbstractCoreTest() {
table {
group {
//DRI should be "test//abc/#/-1/"
- link { +"Collection" }
+ link { +"kotlin.collections.Collection" }
group {
group { +"Comment to stdliblink" }
}
@@ -333,7 +333,7 @@ class ContentForSeeAlsoTest : AbstractCoreTest() {
table {
group {
//DRI should be "test//abc/#/-1/"
- link { +"Collection" }
+ link { +"kotlin.collections.Collection" }
group {
group { +"Comment to stdliblink" }
}
@@ -456,7 +456,7 @@ class ContentForSeeAlsoTest : AbstractCoreTest() {
}
group {
//DRI should be "test//abc/#/-1/"
- link { +"Collection" }
+ link { +"kotlin.collections.Collection" }
group { group { +"Comment to collection" } }
}
}