Remove codegen tests with Java, move testData to boxWithJava/

There'll be a single generated test class like
BlackBoxCodegenTestGenerated
This commit is contained in:
Alexander Udalov
2013-01-27 20:26:18 +04:00
committed by Alexander Udalov
parent 10c5949199
commit 86938f57b1
20 changed files with 9 additions and 41 deletions

View File

@@ -0,0 +1,18 @@
package test;
import java.lang.Override;
import java.lang.String;
public enum simpleJavaEnumWithFunction {
A {
@Override
public String repr() {
return "A";
}
},
B;
public String repr() {
return "ololol" + toString();
}
}