mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-18 04:21:24 +07:00
[code vision] IDEA-308383: add tests
GitOrigin-RevId: 01d0533ab5afa44ef6f2acd16368735abce47186
This commit is contained in:
committed by
intellij-monorepo-bot
parent
3c3d3694e8
commit
5268fb65ec
@@ -0,0 +1,6 @@
|
||||
class ExternalUsage {
|
||||
void foo(){
|
||||
new Test().test();
|
||||
<caret>
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
void use() {
|
||||
test();
|
||||
test();
|
||||
}
|
||||
|
||||
void test() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class ExternalUsage {
|
||||
void foo(){
|
||||
new Test().test();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
class Test {
|
||||
void use() {
|
||||
test();
|
||||
test();
|
||||
<caret>
|
||||
}
|
||||
|
||||
void test() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class ExternalUsage {
|
||||
void foo(){
|
||||
new Test().test();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test<caret> {
|
||||
void use() {
|
||||
test();
|
||||
test();
|
||||
}
|
||||
|
||||
void test() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
class ExternalUsage {
|
||||
void foo(){
|
||||
Test.test();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
void use() {
|
||||
test();
|
||||
test();
|
||||
}
|
||||
|
||||
public static void test<caret>() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user