merged ReformatCodeActionInEditorTest into MultiActionCodeProcessorTest, test data moved. Fixed compilation and other minor after merge issues.

This commit is contained in:
Yaroslav Lepenkin
2015-01-14 18:39:17 +02:00
parent a5608eccba
commit 2d7ff4d318
17 changed files with 58 additions and 276 deletions
@@ -0,0 +1,14 @@
import java.util.ArrayList;
import java.util.List;
public class Test {
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
int a = 3;
int b = 3;
}
}
@@ -0,0 +1,17 @@
import java.lang.String;
import java.util.List;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.HashSet;
public class Test {
public static void main(String[] args) {
<selection>List<String> list = new ArrayList<String>();
int a = 3;</selection>
int b = 3;
}
}
@@ -0,0 +1,11 @@
public class Test {
int a = 2;
int b = 3;
public void run() {
int myFirst = 12;
}
}
@@ -0,0 +1,11 @@
public class Test {
<selection>int a = 2;
int b = 3;</selection>
public void run() {
int myFirst = 12;
}
}
@@ -0,0 +1,11 @@
import java.util.ArrayList;
import java.util.List;
public class Test {
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
}
}
@@ -0,0 +1,14 @@
import java.lang.String;
import java.util.List;
import java.util.HashMap;
import java.util.ArrayList;
import java.util.HashSet;
public class Test {
public static void main(String[] args) {
List<String> list = new ArrayList<String>();
}
}
@@ -0,0 +1,10 @@
public class Test {
public int a = 3;
public void test() {
int c = 3;
}
}
@@ -0,0 +1,10 @@
public class Test {
public int a = 3;
public void test() {
int c = 3;
}
}