OLD | NEW |
(Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 import "dart:isolate"; |
| 6 import "package:expect/expect.dart"; |
| 7 import "package:async_helper/async_helper.dart"; |
| 8 |
| 9 void main() { |
| 10 asyncStart(); |
| 11 var c1 = new Capability(); |
| 12 var c2 = new Capability(); |
| 13 Expect.notIdentical(c1, c2); |
| 14 Expect.notEquals(c1, c2); |
| 15 |
| 16 var receive = new RawReceivePort(); |
| 17 receive.sendPort.send(c1); |
| 18 receive.handler = (c3) { |
| 19 Expect.identical(c3, c1); |
| 20 asyncEnd(); |
| 21 }; |
| 22 } |
OLD | NEW |