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

Unified Diff: tests/language/async_star_await_pauses_test.dart

Issue 1869583003: Replace broken language/async_star_await_pauses_test (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Address comments, rename test Created 4 years, 8 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/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/async_star_await_pauses_test.dart
diff --git a/tests/language/async_star_await_pauses_test.dart b/tests/language/async_star_await_pauses_test.dart
deleted file mode 100644
index c16fbdd7ff898666c1462fca8a336a020e9679ee..0000000000000000000000000000000000000000
--- a/tests/language/async_star_await_pauses_test.dart
+++ /dev/null
@@ -1,34 +0,0 @@
-// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-import "dart:async";
-import "package:expect/expect.dart";
-import "package:async_helper/async_helper.dart";
-
-main() {
- var sc;
- var i = 0;
- void send() {
- if (i == 5) {
- sc.close();
- } else {
- sc.add(i++);
- }
- }
- sc = new StreamController(onListen: send, onResume: send);
-
- f(s) async {
- var r = 0;
- await for (var i in s) {
- r += await new Future.delayed(new Duration(milliseconds: 10), () => i);
- }
- return r;
- }
-
- asyncStart();
- f(sc.stream).then((v) {
- Expect.equals(10, v);
- asyncEnd();
- });
-}
« no previous file with comments | « no previous file | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698