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

Side by Side Diff: tests/isolate/stream_mangling_test.dart

Issue 11778030: Test fixes for dartium (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/html/html.status ('k') | tests/lib/async/future2_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 4
5 library stream_mangling_test;
6
5 import 'dart:isolate'; 7 import 'dart:isolate';
6 import '../../pkg/unittest/lib/unittest.dart'; 8 import '../../pkg/unittest/lib/unittest.dart';
7 9
8 main() { 10 main() {
9 test("Self referencing arrays serialize correctly", () { 11 test("Self referencing arrays serialize correctly", () {
10 var messageBox = new MessageBox(); 12 var messageBox = new MessageBox();
11 var stream = messageBox.stream; 13 var stream = messageBox.stream;
12 var sink = messageBox.sink; 14 var sink = messageBox.sink;
13 var nested = []; 15 var nested = [];
14 nested.add(nested); 16 nested.add(nested);
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 }); 93 });
92 94
93 test("Sending of IsolateSinks", () { 95 test("Sending of IsolateSinks", () {
94 // TODO(floitsch): add test. 96 // TODO(floitsch): add test.
95 }); 97 });
96 98
97 test("Sending of IsolateSinks in complicated structures", () { 99 test("Sending of IsolateSinks in complicated structures", () {
98 // TODO(floitsch): add test. 100 // TODO(floitsch): add test.
99 }); 101 });
100 } 102 }
OLDNEW
« no previous file with comments | « tests/html/html.status ('k') | tests/lib/async/future2_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698