mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
test for IDEA-185139 A method's call hierarchy shows also references inside JavaDoc comments
GitOrigin-RevId: 8449f60086ded2566843fc81745f26d8f0efb21d
This commit is contained in:
committed by
intellij-monorepo-bot
parent
99c23efd56
commit
db53879e9b
+1
@@ -0,0 +1 @@
|
||||
<node text="X.persist() (p)" base="true"/>
|
||||
@@ -0,0 +1,14 @@
|
||||
package p;
|
||||
|
||||
class X {
|
||||
/**
|
||||
* see {@link #persist()}
|
||||
*/
|
||||
int f(int y) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
void persist() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -119,4 +119,8 @@ public class JavaCallHierarchyTest extends HierarchyViewTestBase {
|
||||
protected Sdk getTestProjectJdk() {
|
||||
return IdeaTestUtil.getMockJdk18();
|
||||
}
|
||||
|
||||
public void testMustIgnoreJavadocReferences() throws Exception {
|
||||
doJavaCallTypeHierarchyTest("p.X", "persist", "X.java");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user