java: .class file tests cleanup

- meaningful ClsRepositoryUseTest cases moved to ClsPsiTest
- related test data grouped under a single directory
- obsolete test data dropped
This commit is contained in:
Roman Shevchenko
2015-05-23 19:42:33 +02:00
parent 3b7a14ebf9
commit 5ef6cdb13d
96 changed files with 413 additions and 914 deletions
@@ -1,11 +0,0 @@
package pack;
public @interface Annotation2 {
float f1() default Float.NEGATIVE_INFINITY;
float f2() default Float.NaN;
float f3() default Float.POSITIVE_INFINITY;
double d1() default Double.NEGATIVE_INFINITY;
double d2() default Double.NaN;
double d3() default Double.POSITIVE_INFINITY;
}
@@ -1,23 +0,0 @@
package pack;
import java.util.ArrayList;
public class MyClass extends ArrayList implements Cloneable{
/**
* @deprecated
*/
static final int field1 = 123;
Object[] field2;
void method1(int[] p1, Object p2) throws Exception, java.io.IOException{
}
Integer method2()[]{
return null;
}
MyClass(){}
static class Inner{}
}
@@ -1,7 +0,0 @@
package pack;
/**
* @author dsl
*/
public class Parametrized<T> {
}
@@ -1,12 +0,0 @@
package pack;
import java.util.List;
/**
* @author dsl
*/
public class Variance<T> {
public Parametrized<? extends T> method() { return null; }
public <V> Parametrized<? extends V>methodWithTypeParameter() { return null; };
public void removeAll(Variance<?> parameter) {} ;
}