[extract method with object] add tests

GitOrigin-RevId: 0e2d72f613e0b8d1f396bd3a28ca32dd834893c7
This commit is contained in:
Alexandr Suhinin
2023-01-30 17:02:32 +02:00
committed by intellij-monorepo-bot
parent 17a785e6b6
commit 8a3a0b1d0b
17 changed files with 389 additions and 26 deletions

View File

@@ -0,0 +1,10 @@
public class Test {
void test() {
<selection>int x = 0;
int y = 0;
System.out.println();</selection>
System.out.println("Point(" + x + ", " + y + ")");
}
}