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

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

Issue 2656503004: Revert "Remove package:unittest from some tests" (Closed)
Patch Set: Created 3 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
« no previous file with comments | « tests/language/async_await_test.dart ('k') | tests/language/async_star_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) 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 library async_star_pause_test; 5 library async_star_pause_test;
6 6
7 import "package:test/test.dart"; 7 import "package:unittest/unittest.dart";
8 import "dart:async"; 8 import "dart:async";
9 9
10 main() { 10 main() {
11 test("await for pauses stream during body", () async { 11 test("await for pauses stream during body", () async {
12 // Assumes await-for uses streamIterator. 12 // Assumes await-for uses streamIterator.
13 var log = []; 13 var log = [];
14 var s = () async* { 14 var s = () async* {
15 for (int i = 0; i < 3; i++) { 15 for (int i = 0; i < 3; i++) {
16 log.add("$i-"); 16 log.add("$i-");
17 yield i; 17 yield i;
18 // Should pause here until next iteration of await-for loop. 18 // Should pause here until next iteration of await-for loop.
19 log.add("$i+"); 19 log.add("$i+");
20 } 20 }
21 }(); 21 }();
22 await for (var i in s) { 22 await for (var i in s) {
23 log.add("$i?"); 23 log.add("$i?");
24 await nextMicrotask(); 24 await nextMicrotask();
25 log.add("$i!"); 25 log.add("$i!");
26 } 26 }
27 expect(log, ["0-", "0?", "0!", "0+", 27 expect(log, ["0-", "0?", "0!", "0+",
28 "1-", "1?", "1!", "1+", 28 "1-", "1?", "1!", "1+",
29 "2-", "2?", "2!", "2+"]); 29 "2-", "2?", "2!", "2+"]);
30 }); 30 });
31 } 31 }
32 Future nextMicrotask() => new Future.microtask((){}); 32 Future nextMicrotask() => new Future.microtask((){});
OLDNEW
« no previous file with comments | « tests/language/async_await_test.dart ('k') | tests/language/async_star_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698