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

Side by Side Diff: tests/language/typed_message_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 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
« no previous file with comments | « tests/language/type_vm_test.dart ('k') | tests/language/typed_selector_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // Dart test program for testing isolate communication with 4 // Dart test program for testing isolate communication with
5 // typed objects. 5 // typed objects.
6 // VMOptions=--checked 6 // VMOptions=--checked
7 7
8 library TypedMessageTest; 8 library TypedMessageTest;
9 import "package:expect/expect.dart";
10 import "dart:isolate"; 9 import "dart:isolate";
11 10
12 void logMessages() { 11 void logMessages() {
13 print("Starting log server."); 12 print("Starting log server.");
14 port.receive((List<int> message, SendPort replyTo) { 13 port.receive((List<int> message, SendPort replyTo) {
15 print("Log $message"); 14 print("Log $message");
16 Expect.equals(5, message.length); 15 Expect.equals(5, message.length);
17 Expect.equals(0, message[0]); 16 Expect.equals(0, message[0]);
18 Expect.equals(1, message[1]); 17 Expect.equals(1, message[1]);
19 Expect.equals(2, message[2]); 18 Expect.equals(2, message[2]);
20 Expect.equals(3, message[3]); 19 Expect.equals(3, message[3]);
21 Expect.equals(4, message[4]); 20 Expect.equals(4, message[4]);
22 port.close(); 21 port.close();
23 replyTo.send(1, null); 22 replyTo.send(1, null);
24 print("Stopping log server."); 23 print("Stopping log server.");
25 }); 24 });
26 } 25 }
27 26
28 main() { 27 main() {
29 SendPort remote = spawnFunction(logMessages); 28 SendPort remote = spawnFunction(logMessages);
30 List<int> msg = new List<int>(5); 29 List<int> msg = new List<int>(5);
31 for (int i = 0; i < 5; i++) { 30 for (int i = 0; i < 5; i++) {
32 msg[i] = i; 31 msg[i] = i;
33 } 32 }
34 remote.call(msg).then((int message) { 33 remote.call(msg).then((int message) {
35 Expect.equals(1, message); 34 Expect.equals(1, message);
36 }); 35 });
37 } 36 }
OLDNEW
« no previous file with comments | « tests/language/type_vm_test.dart ('k') | tests/language/typed_selector_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698