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 var c1 = new Capability(); | |
12 var c2 = new Capability(); | |
13 Expect.notEquals(c1, c2); | |
14 | 11 |
15 var receive = new RawReceivePort(); | 12 test(c1, c2) { |
16 receive.sendPort.send(c1); | 13 asyncStart(); |
17 receive.handler = (c3) { | 14 Expect.notEquals(c1, c2); |
18 Expect.equals(c3, c1); | 15 var receive = new RawReceivePort(); |
19 Expect.notEquals(c3, c2); | 16 receive.sendPort.send(c1); |
20 asyncEnd(); | 17 receive.handler = (c3) { |
21 }; | 18 Expect.equals(c3, c1); |
| 19 Expect.notEquals(c3, c2); |
| 20 receive.close(); |
| 21 asyncEnd(); |
| 22 }; |
| 23 } |
| 24 Capability c1 = new Capability(); |
| 25 Capability c2 = new Capability(); |
| 26 Capability c3 = (new RawReceivePort()..close()).sendPort; |
| 27 Capability c4 = (new RawReceivePort()..close()).sendPort; |
| 28 test(c1, c2); |
| 29 test(c3, c4); |
| 30 test(c1, c3); |
| 31 asyncEnd(); |
22 } | 32 } |
OLD | NEW |