Inherit Test update

This commit is contained in:
JanUlrich 2020-05-08 11:35:21 +02:00
parent 60b182b9b1
commit a0a813f87c
2 changed files with 5 additions and 5 deletions

View File

@ -143,7 +143,7 @@ public class InheritTest {
classToTest = loader.loadClass("Inherit");
Method m = classToTestAA.getDeclaredMethod("m", Integer.class);
assertEquals(m.invoke(instanceOfClassAA, 5), "AA");
classToTestAA = classToTest.getField("aafield").getType();
classToTestAA = classToTest.getDeclaredField("aafield").getType();
Method main = classToTest.getDeclaredMethod("main", classToTestAA, Integer.class);
assertEquals(main.invoke(instanceOfClass, instanceOfClassAA, 5), "AA");
}

View File

@ -9,11 +9,11 @@ public class Inherit {
AA aafield;
//m(Integer i) { return "AA"; }
main(d, i) {
main2(d, i) {
return d.m(i);
}
main(v, i) {
main2(v, i) {
var aa = v.elementAt(0);
return aa.m(i);
}