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");
27 System.out.println("Calling verifiable function on Main");
28 System.out.println(m.sayHi());
29 System.out.println("Calling unverifiable function on Main");
32 System.out.println("Unexpected no error Thrown on Main");
34 System.out.println("Expected NSME Thrown on Main");
36 System.out.println("Unexpected Error Thrown on Main");
37 e.printStackTrace(System.out);
39 System.out.println("Calling verifiable function on Main");
40 System.out.println(m.sayHi());
45 System.out.println("Calling verifiable function on Iface");
46 System.out.println(m.sayHi());
47 System.out.println("Calling unverifiable function on Iface");
50 System.out.println("Unexpected no error Thrown on Iface");
52 System.out.println("Expected NSME Thrown on Iface");
54 System.out.println("Unexpected Error Thrown on Iface");
55 e.printStackTrace(System.out);
57 System.out.println("Calling verifiable function on Iface");
58 System.out.println(m.sayHi());