Remove codegen tests with Java, move testData to boxWithJava/
There'll be a single generated test class like BlackBoxCodegenTestGenerated
This commit is contained in:
committed by
Alexander Udalov
parent
10c5949199
commit
86938f57b1
+1
-1
@@ -4,4 +4,4 @@ public class simpleJavaInnerEnum {
|
||||
public enum MyEnum {
|
||||
A;
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -2,4 +2,4 @@ public class removeInIterator {
|
||||
public static void bar(java.util.Iterator<Integer> it) {
|
||||
it.remove();
|
||||
}
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -10,4 +10,4 @@ fun box() : String {
|
||||
return "OK"
|
||||
}
|
||||
return "fail"
|
||||
}
|
||||
}
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test;
|
||||
|
||||
public class noClassObjectForJavaClass {
|
||||
public class classWithNestedEnum {
|
||||
public enum E { ENTRY }
|
||||
|
||||
public static String foo() { return "OK"; }
|
||||
@@ -0,0 +1,5 @@
|
||||
package test
|
||||
|
||||
fun box(): String {
|
||||
return classWithNestedEnum.foo()!!
|
||||
}
|
||||
@@ -1,5 +0,0 @@
|
||||
package test
|
||||
|
||||
fun box(): String {
|
||||
return noClassObjectForJavaClass.foo()!!
|
||||
}
|
||||
Reference in New Issue
Block a user