OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 // VMOptions=--error_on_bad_type --error_on_bad_override | 4 // VMOptions=--error_on_bad_type --error_on_bad_override |
5 | 5 |
6 import 'package:observatory/service_io.dart'; | 6 import 'package:observatory/service_io.dart'; |
7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
8 import 'test_helper.dart'; | 8 import 'test_helper.dart'; |
9 import 'service_test_common.dart'; | 9 import 'service_test_common.dart'; |
10 | 10 |
11 doThrow() { | 11 doThrow() { |
12 throw "TheException"; // Line 13. | 12 throw "TheException"; // Line 13. |
13 return "end of doThrow"; | 13 return "end of doThrow"; |
14 } | 14 } |
15 | 15 |
16 var tests = [ | 16 var tests = [ |
17 hasStoppedWithUnhandledException, | 17 hasStoppedWithUnhandledException, |
| 18 |
18 (Isolate isolate) async { | 19 (Isolate isolate) async { |
19 print("We stoppped!"); | 20 print("We stoppped!"); |
20 var stack = await isolate.getStack(); | 21 var stack = await isolate.getStack(); |
21 expect(stack['frames'][0].function.name, equals('doThrow')); | 22 expect(stack['frames'][0].function.name, equals('doThrow')); |
22 } | 23 } |
23 ]; | 24 ]; |
24 | 25 |
25 main(args) => runIsolateTestsSynchronous(args, tests, | 26 main(args) => runIsolateTestsSynchronous(args, |
26 pause_on_unhandled_exceptions: true, testeeConcurrent: doThrow); | 27 tests, |
| 28 pause_on_unhandled_exceptions: true, |
| 29 testeeConcurrent: doThrow); |
OLD | NEW |