File tree Expand file tree Collapse file tree 3 files changed +31
-0
lines changed
tests/org/jetbrains/kotlin/idea/completion/test Expand file tree Collapse file tree 3 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ package importP.source
2
+
3
+ /* *
4
+ * @see importP.<caret>
5
+ */
6
+ class Referrer
7
+
8
+ // EXIST: source
9
+ // ABSENT: Referrer
10
+
Original file line number Diff line number Diff line change
1
+ package importP.source
2
+
3
+ /* *
4
+ * @see importP.source.<caret>
5
+ */
6
+ class Referrer
7
+
8
+ // EXIST: Referrer
9
+
Original file line number Diff line number Diff line change @@ -54,6 +54,18 @@ public void testFQLink() throws Exception {
54
54
doTest (fileName );
55
55
}
56
56
57
+ @ TestMetadata ("FQLinkInTag1.kt" )
58
+ public void testFQLinkInTag1 () throws Exception {
59
+ String fileName = KotlinTestUtils .navigationMetadata ("idea/idea-completion/testData/kdoc/FQLinkInTag1.kt" );
60
+ doTest (fileName );
61
+ }
62
+
63
+ @ TestMetadata ("FQLinkInTag2.kt" )
64
+ public void testFQLinkInTag2 () throws Exception {
65
+ String fileName = KotlinTestUtils .navigationMetadata ("idea/idea-completion/testData/kdoc/FQLinkInTag2.kt" );
66
+ doTest (fileName );
67
+ }
68
+
57
69
@ TestMetadata ("Link.kt" )
58
70
public void testLink () throws Exception {
59
71
String fileName = KotlinTestUtils .navigationMetadata ("idea/idea-completion/testData/kdoc/Link.kt" );
You can’t perform that action at this time.
0 commit comments