modified: test/javFiles/Fields.jav

Typdeklaration von Filed test2 entfernt

	modified:   test/typeinference/JavaTXCompilerTest.java
Unittest LambdaFiled.java reingenommen
This commit is contained in:
Martin Plümicke 2018-08-28 10:11:46 +02:00
parent b70e261b23
commit 72e128d3f3
2 changed files with 5 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import java.lang.String;
class Fields{
String test2 = "test";
test2 = "test";
test;
m(){
var test3;

View File

@ -23,7 +23,6 @@ import java.util.Set;
public class JavaTXCompilerTest {
public static final String rootDirectory = System.getProperty("user.dir")+"/test/javFiles/";
@Test
public void finiteClosure() throws IOException, ClassNotFoundException {
execute(new File(rootDirectory+"fc.jav"));
@ -41,6 +40,10 @@ public class JavaTXCompilerTest {
execute(new File(rootDirectory+"Lambda3.jav"));
}
@Test
public void lambdaField() throws IOException, ClassNotFoundException {
execute(new File(rootDirectory+"LambdaField.jav"));
}
@Test
public void mathStruc() throws IOException, ClassNotFoundException {
execute(new File(rootDirectory+"mathStruc.jav"));
}