Lines Matching refs:out

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