@@ -29,6 +29,7 @@ import org.jetbrains.dokka.pages.ContentPage
2929import org.jetbrains.dokka.pages.MemberPageNode
3030import utils.OnlySymbols
3131import utils.findTestType
32+ import utils.withExperimentalKDocResolution
3233import kotlin.test.Ignore
3334import kotlin.test.Test
3435import kotlin.test.assertEquals
@@ -46,7 +47,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
4647 }
4748
4849 @Test
49- fun `#3451 ambiguous link to the class` () {
50+ fun `#3451 ambiguous link to the class` () = withExperimentalKDocResolution {
5051 testInline(
5152 """
5253 |/src/main/kotlin/test/source.kt
@@ -120,7 +121,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
120121 }
121122
122123 @Test
123- fun `#3451 ambiguous link to function and property` () {
124+ fun `#3451 ambiguous link to function and property` () = withExperimentalKDocResolution {
124125 testInline(
125126 """
126127 |/src/main/kotlin/test/source.kt
@@ -212,7 +213,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
212213 }
213214
214215 @Test
215- fun `#3451 ambiguous link with factory functions` () {
216+ fun `#3451 ambiguous link with factory functions` () = withExperimentalKDocResolution {
216217 testInline(
217218 """
218219 |/src/main/kotlin/test/source.kt
@@ -359,7 +360,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
359360 }
360361
361362 @Test
362- fun `#3451 ambiguous link to inner class` () {
363+ fun `#3451 ambiguous link to inner class` () = withExperimentalKDocResolution {
363364 testInline(
364365 """
365366 |/src/main/kotlin/test/source.kt
@@ -411,7 +412,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
411412 }
412413
413414 @Test
414- fun `#3179 KDoc link to property` () {
415+ fun `#3179 KDoc link to property` () = withExperimentalKDocResolution {
415416 testInline(
416417 """
417418 |/src/main/kotlin/test/source.kt
@@ -485,7 +486,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
485486 }
486487
487488 @Test
488- fun `#3179 KDoc link to parameter` () {
489+ fun `#3179 KDoc link to parameter` () = withExperimentalKDocResolution {
489490 testInline(
490491 """
491492 |/src/main/kotlin/test/source.kt
@@ -536,7 +537,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
536537
537538 @Test
538539 @Ignore(" KT-83152 [Analysis API, KDoc] Make class name links on constructors point to the class" )
539- fun `#3604 KDoc reference to class from constructor` () {
540+ fun `#3604 KDoc reference to class from constructor` () = withExperimentalKDocResolution {
540541 testInline(
541542 """
542543 |/src/main/kotlin/test/source.kt
@@ -604,7 +605,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
604605 }
605606
606607 @Test
607- fun `#3632 KDoc reference to extension` () {
608+ fun `#3632 KDoc reference to extension` () = withExperimentalKDocResolution {
608609 testInline(
609610 """
610611 |/src/main/kotlin/test/source.kt
@@ -666,7 +667,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
666667 }
667668
668669 @Test
669- fun `#3632 KDoc reference to member in extension` () {
670+ fun `#3632 KDoc reference to member in extension` () = withExperimentalKDocResolution {
670671 testInline(
671672 """
672673 |/src/main/kotlin/test/source.kt
@@ -726,7 +727,7 @@ class KDocAmbiguityResolutionTest : BaseAbstractTest() {
726727 }
727728
728729 @Test
729- fun `#4327 KDoc reference to properties named the same as constructor parameters` () {
730+ fun `#4327 KDoc reference to properties named the same as constructor parameters` () = withExperimentalKDocResolution {
730731 testInline(
731732 """
732733 |/src/main/kotlin/test/source.kt
0 commit comments