inplace introduce api: inplace introduce parameter: tests

This commit is contained in:
anna
2011-05-26 16:08:20 +04:00
parent 49281d78ec
commit 6f3a5a0578
11 changed files with 242 additions and 43 deletions
@@ -0,0 +1,6 @@
class Test {
void simpleMethod() {
System.out.println("<caret>");
System.out.println("");
}
}
@@ -0,0 +1,5 @@
class Test {
void simpleMethod() {
boolean b<caret>b;
}
}
@@ -0,0 +1,5 @@
class Test {
void simpleMethod() {
boolean <caret>bb;
}
}
@@ -0,0 +1,6 @@
class Test {
void simpleMethod() {
System.out.println(<caret>"");
System.out.println("");
}
}
@@ -0,0 +1,6 @@
class Test {
void foo() {
System.out.println("hello");
System.out.println("hel<caret>lo");
}
}
@@ -0,0 +1,6 @@
class Test {
void foo(String hello) {
System.out.println(hello);
System.out.println(<caret>hello);
}
}