OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 // |
| 5 // Dart test program for checking implemention of IsolateMirror when |
| 6 // inspecting a remote isolate. |
| 7 |
| 8 #library('isolate_mirror_local_test'); |
| 9 |
| 10 #import('dart:isolate'); |
| 11 #import('dart:mirrors'); |
| 12 |
| 13 void isolateMain() { |
| 14 port.receive( |
| 15 (msg, replyPort) { |
| 16 Expect.fail('Received unexpected message $msg in remote isolate.'); |
| 17 }); |
| 18 } |
| 19 |
| 20 void testIsolateMirror(IsolateMirror mirror) { |
| 21 Expect.fail('Should not reach here. Remote isolates not implemented.'); |
| 22 } |
| 23 |
| 24 void main() { |
| 25 SendPort sp = spawnFunction(isolateMain); |
| 26 try { |
| 27 isolateMirrorOf(sp).then(testIsolateMirror); |
| 28 Expect.fail('Should not reach here. Remote isolates not implemented.'); |
| 29 } catch (var exception) { |
| 30 Expect.isTrue(exception is NotImplementedException); |
| 31 } |
| 32 } |
OLD | NEW |