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(); | 11 var c1 = new Capability(); |
12 var c2 = new Capability(); | 12 var c2 = new Capability(); |
13 Expect.notIdentical(c1, c2); | |
14 Expect.notEquals(c1, c2); | 13 Expect.notEquals(c1, c2); |
15 | 14 |
16 var receive = new RawReceivePort(); | 15 var receive = new RawReceivePort(); |
17 receive.sendPort.send(c1); | 16 receive.sendPort.send(c1); |
18 receive.handler = (c3) { | 17 receive.handler = (c3) { |
19 Expect.identical(c3, c1); | 18 Expect.equals(c3, c1); |
| 19 Expect.notEquals(c3, c2); |
20 asyncEnd(); | 20 asyncEnd(); |
21 }; | 21 }; |
22 } | 22 } |
OLD | NEW |