File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
dokka-subprojects/plugin-base/src/test/kotlin/markdown Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -915,7 +915,7 @@ class LinkTest : BaseAbstractTest() {
915
915
}
916
916
917
917
@Test
918
- @OnlySymbols(" #3555" )
918
+ // @OnlySymbols("#3555")
919
919
fun `K2 full link should lead to an extension with type params` () {
920
920
testInline(
921
921
"""
@@ -930,11 +930,11 @@ class LinkTest : BaseAbstractTest() {
930
930
|interface MyListWithNumber : List<Number>
931
931
|
932
932
|/**
933
- | * 1 [List.foo] is resolved
934
- | * 2 [MutableList.foo] is unresolved
935
- | * 3 [MyListWithT.foo] is unresolved
936
- | * 4 [MyListWithTNumberBound.foo] is unresolved in K2
937
- | * 5 [MyListWithNumber.foo] is unresolved in K2
933
+ | * 1 [List.foo]
934
+ | * 2 [MutableList.foo] is resolved only in K2, but unresolved in K1
935
+ | * 3 [MyListWithT.foo] is resolved only in K2, but unresolved in K1
936
+ | * 4 [MyListWithTNumberBound.foo]
937
+ | * 5 [MyListWithNumber.foo]
938
938
| */
939
939
|fun usage() {}
940
940
""" .trimMargin(),
@@ -952,7 +952,11 @@ class LinkTest : BaseAbstractTest() {
952
952
)
953
953
assertEquals(
954
954
listOf (
955
- " List.foo" to fooDRI
955
+ " List.foo" to fooDRI,
956
+ " MutableList.foo" to fooDRI,
957
+ " MyListWithT.foo" to fooDRI,
958
+ " MyListWithTNumberBound.foo" to fooDRI,
959
+ " MyListWithNumber.foo" to fooDRI,
956
960
), module.getAllLinkDRIFrom(" usage" )
957
961
)
958
962
}
You can’t perform that action at this time.
0 commit comments