| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 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 | 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 library package_isolate_test; | 5 library package_isolate_test; |
| 6 | |
| 7 import 'package:shared.dart' as shared; | 6 import 'package:shared.dart' as shared; |
| 8 import 'dart:isolate'; | 7 import 'dart:isolate'; |
| 9 import '../../../pkg/unittest/unittest.dart'; | 8 import '../../../pkg/unittest/lib/unittest.dart'; |
| 10 | 9 |
| 11 expectResponse() { | 10 expectResponse() { |
| 12 port.receive(expectAsync2((msg, r) { | 11 port.receive(expectAsync2((msg, r) { |
| 13 expect('isolate', msg); | 12 expect('isolate', msg); |
| 14 expect('main', shared.output); | 13 expect('main', shared.output); |
| 15 port.close(); | 14 port.close(); |
| 16 })); | 15 })); |
| 17 } | 16 } |
| 18 | 17 |
| 19 void main() { | 18 void main() { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 38 sendPort.send('sendPort', port.toSendPort()); | 37 sendPort.send('sendPort', port.toSendPort()); |
| 39 }); | 38 }); |
| 40 } | 39 } |
| 41 | 40 |
| 42 void isolate_main() { | 41 void isolate_main() { |
| 43 shared.output = 'isolate'; | 42 shared.output = 'isolate'; |
| 44 port.receive((msg, replyTo) { | 43 port.receive((msg, replyTo) { |
| 45 replyTo.send(shared.output); | 44 replyTo.send(shared.output); |
| 46 }); | 45 }); |
| 47 } | 46 } |
| OLD | NEW |