| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // | 4 // |
| 5 // Dart test program for checking implemention of MirrorSystem when | 5 // Dart test program for checking implemention of MirrorSystem when |
| 6 // inspecting a remote isolate. | 6 // inspecting a remote isolate. |
| 7 | 7 |
| 8 library isolate_mirror_local_test; | 8 library isolate_mirror_local_test; |
| 9 | 9 |
| 10 import "package:expect/expect.dart"; | |
| 11 import 'dart:isolate'; | 10 import 'dart:isolate'; |
| 12 import 'dart:mirrors'; | 11 import 'dart:mirrors'; |
| 13 | 12 |
| 14 void isolateMain() { | 13 void isolateMain() { |
| 15 port.receive( | 14 port.receive( |
| 16 (msg, replyPort) { | 15 (msg, replyPort) { |
| 17 Expect.fail('Received unexpected message $msg in remote isolate.'); | 16 Expect.fail('Received unexpected message $msg in remote isolate.'); |
| 18 }); | 17 }); |
| 19 } | 18 } |
| 20 | 19 |
| 21 void testMirrorSystem(MirrorSystem mirror) { | 20 void testMirrorSystem(MirrorSystem mirror) { |
| 22 Expect.fail('Should not reach here. Remote isolates not implemented.'); | 21 Expect.fail('Should not reach here. Remote isolates not implemented.'); |
| 23 } | 22 } |
| 24 | 23 |
| 25 void main() { | 24 void main() { |
| 26 SendPort sp = spawnFunction(isolateMain); | 25 SendPort sp = spawnFunction(isolateMain); |
| 27 try { | 26 try { |
| 28 mirrorSystemOf(sp).then(testMirrorSystem); | 27 mirrorSystemOf(sp).then(testMirrorSystem); |
| 29 Expect.fail('Should not reach here. Remote isolates not implemented.'); | 28 Expect.fail('Should not reach here. Remote isolates not implemented.'); |
| 30 } catch (exception) { | 29 } catch (exception) { |
| 31 Expect.isTrue(exception is UnimplementedError); | 30 Expect.isTrue(exception is UnimplementedError); |
| 32 } | 31 } |
| 33 } | 32 } |
| OLD | NEW |