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

Side by Side Diff: tests/language_2/async_star_stream_take_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
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 Stream makeStream(int n) async* { 9 Stream makeStream(int n) async* {
10 for (int i = 0; i < n; i++) yield i; 10 for (int i = 0; i < n; i++) yield i;
11 } 11 }
12 12
13 main() { 13 main() {
14 f(Stream s) async { 14 f(Stream s) async {
15 var r = 0; 15 var r = 0;
16 await for (var v in s.take(5)) r += v; 16 await for (var v in s.take(5)) r += v;
17 return r; 17 return r;
18 } 18 }
19 19
20 asyncStart(); 20 asyncStart();
21 f(makeStream(10)).then((v) { 21 f(makeStream(10)).then((v) {
22 Expect.equals(10, v); 22 Expect.equals(10, v);
23 asyncEnd(); 23 asyncEnd();
24 }); 24 });
25 } 25 }
OLDNEW
« no previous file with comments | « tests/language_2/async_star_regression_fisk_test.dart ('k') | tests/language_2/async_star_take_reyield_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698