Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(311)

Side by Side Diff: tests/standalone/package/package_isolate_test.dart

Issue 11195017: Allow package: imports inside isolates (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addresses Siva's comments. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/isolate/timer_isolate_test.dart ('k') | tests/standalone/package/sibling_isolate.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 library package_isolate_test;
6
7 import 'package:shared.dart' as shared;
8 import 'dart:isolate';
9 import '../../../pkg/unittest/unittest.dart';
10
11 expectResponse() {
12 port.receive(expectAsync2((msg, r) {
13 expect('isolate', msg);
14 expect('main', shared.output);
15 port.close();
16 }));
17 }
18
19 void main() {
20 test("package in spawnFunction()", () {
21 expectResponse();
22 shared.output = 'main';
23 var sendPort = spawnFunction(isolate_main);
24 sendPort.send("sendPort", port.toSendPort());
25 });
26
27 test("package in spawnUri() of sibling file", () {
28 expectResponse();
29 shared.output = 'main';
30 var sendPort = spawnUri('sibling_isolate.dart');
31 sendPort.send('sendPort', port.toSendPort());
32 });
33
34 test("package in spawnUri() of file in folder", () {
35 expectResponse();
36 shared.output = 'main';
37 var sendPort = spawnUri('test_folder/folder_isolate.dart');
38 sendPort.send('sendPort', port.toSendPort());
39 });
40 }
41
42 void isolate_main() {
43 shared.output = 'isolate';
44 port.receive((msg, replyTo) {
45 replyTo.send(shared.output);
46 });
47 }
OLDNEW
« no previous file with comments | « tests/isolate/timer_isolate_test.dart ('k') | tests/standalone/package/sibling_isolate.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698