From 6a1c05c2d340a6812a8b58d3027d8e5712db45a2 Mon Sep 17 00:00:00 2001 From: Marcin Aman Date: Thu, 12 Nov 2020 12:01:00 +0100 Subject: Javadoc @inheritDoc tag support (#1608) --- .../base/src/test/kotlin/content/seealso/ContentForSeeAlsoTest.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'plugins/base/src/test/kotlin/content') 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" } } } } -- cgit