OLD | NEW |
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 import "dart:isolate"; | 5 import "dart:isolate"; |
6 import "package:expect/expect.dart"; | 6 import "package:expect/expect.dart"; |
7 import "package:async_helper/async_helper.dart"; | 7 import "package:async_helper/async_helper.dart"; |
8 | 8 |
9 void main() { | 9 void main() { |
10 asyncStart(); | 10 asyncStart(); |
11 | 11 |
12 test(c1, c2) { | 12 test(c1, c2) { |
13 asyncStart(); | 13 asyncStart(); |
14 Expect.notEquals(c1, c2); | 14 Expect.notEquals(c1, c2); |
15 var receive = new RawReceivePort(); | 15 var receive = new RawReceivePort(); |
16 receive.sendPort.send(c1); | 16 receive.sendPort.send(c1); |
17 receive.handler = (c3) { | 17 receive.handler = (c3) { |
18 Expect.equals(c3, c1); | 18 Expect.equals(c3, c1); |
19 Expect.notEquals(c3, c2); | 19 Expect.notEquals(c3, c2); |
20 receive.close(); | 20 receive.close(); |
21 asyncEnd(); | 21 asyncEnd(); |
22 }; | 22 }; |
23 } | 23 } |
| 24 |
24 Capability c1 = new Capability(); | 25 Capability c1 = new Capability(); |
25 Capability c2 = new Capability(); | 26 Capability c2 = new Capability(); |
26 Capability c3 = (new RawReceivePort()..close()).sendPort; | 27 Capability c3 = (new RawReceivePort()..close()).sendPort; |
27 Capability c4 = (new RawReceivePort()..close()).sendPort; | 28 Capability c4 = (new RawReceivePort()..close()).sendPort; |
28 test(c1, c2); | 29 test(c1, c2); |
29 test(c3, c4); | 30 test(c3, c4); |
30 test(c1, c3); | 31 test(c1, c3); |
31 asyncEnd(); | 32 asyncEnd(); |
32 } | 33 } |
OLD | NEW |