remove some common-prefix-based assertions in tests

This commit is contained in:
peter
2012-11-29 13:18:33 +01:00
parent 700867d76b
commit 73ffd878be
9 changed files with 1 additions and 53 deletions
@@ -1,8 +0,0 @@
class LifeUniverseEverythingEntity {}
class LifeUniverseEverythingManager {}
class FooFooFooFooFoo {
{
LifeUniverseEverything<caret>
}
}
@@ -1,5 +0,0 @@
import java.lang.annotation.Target;
@Target(value={ElementType.<caret>})
@interface Annotation {
}
@@ -1,5 +0,0 @@
import java.lang.annotation.Retention;
@Retention(RetentionPolicy.<caret>)
@interface Annotation {
}
@@ -1,5 +0,0 @@
import java.lang.annotation.Retention;
@Retention(value=RetentionPolicy.<caret>)
@interface Annotation {
}
@@ -1,5 +0,0 @@
import java.lang.annotation.Target;
@Target(ElementType.<caret>)
public @interface Test {
}
@@ -1,18 +0,0 @@
class MyEnum {
public static final MyEnum Foo;
public static final MyEnum Bar;
}
class Bar {
MyEnum getEnum();
}
class Foo {
Bar my;
{
MyEnum cl = MyEnum.<caret>
}
}