modified: ../../java/targetast/TestComplete.java

Test Tph2Test eingefue=gt

	modified:   ../bytecode/javFiles/Tph2.jav
Zeilen auskommentiert, die bereits in anderen Tests enthalten
This commit is contained in:
pl@gohorb.ba-horb.de 2022-08-08 11:09:19 +02:00
parent 092d066774
commit 56f68e84e4
2 changed files with 8 additions and 1 deletions

View File

@ -337,6 +337,12 @@ public class TestComplete {
var instance = classFiles.get("SubMatrix").getDeclaredConstructor().newInstance();
}
@Test
public void tph2Test() throws Exception {
var classFiles = generateClassFiles("Tph2.jav", new ByteArrayClassLoader());
var instance = classFiles.get("Tph2").getDeclaredConstructor().newInstance();
}
@Test
public void tph3Test() throws Exception {
var classFiles = generateClassFiles("Tph3.jav", new ByteArrayClassLoader());

View File

@ -4,7 +4,7 @@ public class Tph2 {
return id.apply(x);
}
/*
m(a,b){
var c = m2(a,b);
//m2(a,b);
@ -14,4 +14,5 @@ public class Tph2 {
m2(a,b){
return b;
}
*/
}