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

Unified Diff: tests/language/asyncstar_yield_test.dart

Issue 912513002: Status updates, and minor fixes to tests of async-await. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | tests/language/asyncstar_yieldstar_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/asyncstar_yield_test.dart
diff --git a/tests/language/asyncstar_yield_test.dart b/tests/language/asyncstar_yield_test.dart
index 6a546fac864a53dbd66e2fb962f7040bde018199..754844d123f5d539cca7d6716b264c2ac1878c9a 100644
--- a/tests/language/asyncstar_yield_test.dart
+++ b/tests/language/asyncstar_yield_test.dart
@@ -15,7 +15,7 @@ Stream<int> foo1() async* {
Stream<int> foo2() async* {
int i = 0;
while (true) {
- await (new Future.delayed(new Duration(milliseconds: 0), () {}));
+ await (new Future.delayed(new Duration(milliseconds: 10), () {}));
if (i > 10) return;
yield i;
i++;
@@ -57,8 +57,7 @@ Stream<int> foo4() async* {
}
}
-main () async {
- asyncStart();
+test() async {
Expect.listEquals([1, 20], await (foo1().toList()));
Expect.listEquals([0, 1, 2, 3], await (foo2().take(4).toList()));
Expect.listEquals([null, -1, 0, 1, 2, 3, 0, 1, 2, 3],
@@ -66,5 +65,11 @@ main () async {
Expect.listEquals([0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
await (foo4().take(10).toList()));
Expect.isTrue(await (finalized.future));
- asyncEnd();
+}
+
+main () {
+ asyncStart();
+ test().then((_) {
+ asyncEnd();
+ });
}
« no previous file with comments | « no previous file | tests/language/asyncstar_yieldstar_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698