diff options
author | Marcin Aman <marcin.aman@gmail.com> | 2020-11-12 12:01:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 12:01:00 +0100 |
commit | 6a1c05c2d340a6812a8b58d3027d8e5712db45a2 (patch) | |
tree | b14c5b0a26fbb61bb5492b1a778e5df57fcd584d /plugins/base/src/test/kotlin/content | |
parent | 7db15c357a417ccd9ff8ad1f90f5aff84eec132f (diff) | |
download | dokka-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.kt | 8 |
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" } } } } |