OLD | NEW |
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 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 | 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. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import "package:expect/expect.dart"; |
| 6 |
4 class ExceptionTest { | 7 class ExceptionTest { |
5 static testMain() { | 8 static testMain() { |
6 int i = 0; | 9 int i = 0; |
7 try { | 10 try { |
8 throw "Hello"; | 11 throw "Hello"; |
9 } on String catch (s) { | 12 } on String catch (s) { |
10 print(s); | 13 print(s); |
11 i += 10; | 14 i += 10; |
12 } | 15 } |
13 | 16 |
(...skipping 16 matching lines...) Expand all Loading... |
30 } catch (x) { | 33 } catch (x) { |
31 correctCatch = false; | 34 correctCatch = false; |
32 } | 35 } |
33 Expect.isTrue(correctCatch); | 36 Expect.isTrue(correctCatch); |
34 } | 37 } |
35 } | 38 } |
36 | 39 |
37 main() { | 40 main() { |
38 ExceptionTest.testMain(); | 41 ExceptionTest.testMain(); |
39 } | 42 } |
OLD | NEW |