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

Side by Side Diff: tests/isolate/src/APIv2_unresolvedPortsBrowserNegativeTest.dart

Issue 9600035: Enable new dart:html wrapperless frog bindings and wrapper dartium bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Handle all code review comments Created 8 years, 9 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
OLDNEW
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 // negative test to ensure that APIv2_unresolvedPortsBrowserTest works. 5 // negative test to ensure that APIv2_unresolvedPortsBrowserTest works.
6 #library('unresolved_ports'); 6 #library('unresolved_ports');
7 #import('dart:dom'); // import added so test.dart can treat this as a webtest. 7 #import('dart:dom'); // import added so test.dart can treat this as a webtest.
8 #import('dart:isolate'); 8 #import('dart:isolate');
9 #import('../../../client/testing/unittest/unittest.dart'); 9 #import('../../../client/testing/unittest/unittest_dom.dart');
10 10
11 // This is similar to APIv2_unresolvedPortsStandaloneNegativeTest but using 11 // This is similar to APIv2_unresolvedPortsStandaloneNegativeTest but using
12 // 'unittest.dart' so it can run to completion in browsers. 12 // 'unittest.dart' so it can run to completion in browsers.
13 13
14 bethIsolate() { 14 bethIsolate() {
15 port.receive((msg, reply) => msg[1].send( 15 port.receive((msg, reply) => msg[1].send(
16 '${msg[0]}\nBeth says: Tim are you coming? And Bob?', reply)); 16 '${msg[0]}\nBeth says: Tim are you coming? And Bob?', reply));
17 } 17 }
18 18
19 timIsolate() { 19 timIsolate() {
(...skipping 22 matching lines...) Expand all
42 SendPort tim = spawnFunction(timIsolate); 42 SendPort tim = spawnFunction(timIsolate);
43 SendPort beth = spawnFunction(bethIsolate); 43 SendPort beth = spawnFunction(bethIsolate);
44 44
45 beth.send( 45 beth.send(
46 // because tim is created asynchronously, here we are sending an 46 // because tim is created asynchronously, here we are sending an
47 // unresolved port: 47 // unresolved port:
48 ['main says: Beth, find out if Tim is coming.', tim], 48 ['main says: Beth, find out if Tim is coming.', tim],
49 port.toSendPort()); 49 port.toSendPort());
50 }); 50 });
51 } 51 }
OLDNEW
« no previous file with comments | « tests/isolate/src/APIv2_spawnUriBrowserTest.dart ('k') | tests/isolate/src/APIv2_unresolvedPortsBrowserTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698