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

Side by Side Diff: tests/language_2/async_star_take_reyield_test.dart

Issue 2985173002: Migrate language/async_backwards... ... language/async_star_take... (Closed)
Patch Set: Update tests to Dart 2.0. Created 3 years, 4 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
« no previous file with comments | « tests/language_2/async_star_stream_take_test.dart ('k') | tests/language_2/language_2.status » ('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) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 import "dart:async"; 5 import "dart:async";
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 import "package:async_helper/async_helper.dart"; 7 import "package:async_helper/async_helper.dart";
8 8
9 expectList(stream, list) { 9 expectList(stream, list) {
10 return stream.toList().then((v) { 10 return stream.toList().then((v) {
11 Expect.listEquals(v, list); 11 Expect.listEquals(v, list);
12 }); 12 });
13 } 13 }
14 14
15 Stream makeStream(int n) async* { 15 Stream makeStream(int n) async* {
16 for (int i = 0; i < n; i++) yield i; 16 for (int i = 0; i < n; i++) yield i;
17 } 17 }
18 18
19 main() { 19 main() {
20 fivePartialSums(Stream s) async* { 20 fivePartialSums(Stream s) async* {
21 var r = 0; 21 var r = 0;
22 await for (var v in s.take(5)) yield r += v; 22 await for (var v in s.take(5)) yield r += v;
23 } 23 }
24 24
25 asyncStart(); 25 asyncStart();
26 expectList(fivePartialSums(makeStream(10)), [0, 1, 3, 6, 10]) 26 expectList(fivePartialSums(makeStream(10)), [0, 1, 3, 6, 10])
27 .then(asyncSuccess); 27 .then(asyncSuccess);
28 } 28 }
OLDNEW
« no previous file with comments | « tests/language_2/async_star_stream_take_test.dart ('k') | tests/language_2/language_2.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698