Lines Matching full:system
18 System.out.println("Create Main instance");
20 System.out.println("Calling functions on concrete Main");
22 System.out.println("Calling functions on interface Iface");
24 System.out.println("Calling functions on interface Iface2");
28 System.out.println("Calling non-abstract function on Main");
29 System.out.println(m.charge());
30 System.out.println("Calling abstract function on Main");
32 System.out.println(m.sayHi());
33 System.out.println("Unexpected no error Thrown on Main");
35 System.out.println("Expected AME Thrown on Main");
37 System.out.println("Unexpected ICCE Thrown on Main");
39 System.out.println("Calling non-abstract function on Main");
40 System.out.println(m.charge());
44 System.out.println("Calling non-abstract function on Iface");
45 System.out.println(m.charge());
46 System.out.println("Calling abstract function on Iface");
48 System.out.println(m.sayHi());
49 System.out.println("Unexpected no error Thrown on Iface");
51 System.out.println("Expected AME Thrown on Iface");
53 System.out.println("Unexpected ICCE Thrown on Iface");
55 System.out.println("Calling non-abstract function on Iface");
56 System.out.println(m.charge());
60 System.out.println("Calling abstract function on Iface2");
62 System.out.println(m.sayHi());
63 System.out.println("Unexpected no error Thrown on Iface2");
65 System.out.println("Expected AME Thrown on Iface2");
67 System.out.println("Unexpected ICCE Thrown on Iface2");