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
@@ -1,18 +0,0 @@
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;
}
public void test() {
}
}
@@ -1,22 +0,0 @@
import java.util.HashMap;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import java.util.HashSet;
public class Test {
public static void main(String[] args) {
<selection> List<String> list = new ArrayList<String>();
int a = 3;<caret></selection>
int b = 3;
}
<selection><caret>
public void test() {
}</selection>
}
@@ -1,19 +0,0 @@
public class Test {
int a = 3;
int b = 12;
long t = 12;
public void test() {
int a = 3;
int b = 4;
}
int rest = -12;
public void run() {
}
}
@@ -1,18 +0,0 @@
public class Test {
<selection> int a = 3;
<caret>int b = 12;</selection>
long t = 12;
public void test() {
<selection> int a = 3;
<caret>int b = 4;</selection>
}
int rest = -12;
<selection>public void run() {}<caret></selection>
}