OLD | NEW |
| (Empty) |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
2 // for details. All rights reserved. Use of this source code is governed by a | |
3 // BSD-style license that can be found in the LICENSE file. | |
4 | |
5 // Testing method invocation. | |
6 // Currently testing only NullPointerException. | |
7 | |
8 class A { | |
9 A() {} | |
10 int foo() { | |
11 return 1; | |
12 } | |
13 } | |
14 | |
15 class MethodInvocationTest { | |
16 static void testNullReceiver() { | |
17 A a = new A(); | |
18 Expect.equals(1, a.foo()); | |
19 a = null; | |
20 bool exceptionCaught = false; | |
21 try { | |
22 a.foo(); | |
23 } catch (NullPointerException e) { | |
24 exceptionCaught = true; | |
25 } | |
26 Expect.equals(true, exceptionCaught); | |
27 } | |
28 | |
29 static void testMain() { | |
30 testNullReceiver(); | |
31 } | |
32 } | |
33 | |
34 main() { | |
35 MethodInvocationTest.testMain(); | |
36 } | |
OLD | NEW |