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

Unified Diff: tests/lib/async/futures_test.dart

Issue 23522012: Replace ReceivePorts with asyncStart|End in some tests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Remove bad comment. Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/lib/async/future_test.dart ('k') | tests/lib/async/intercept_run_async3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/futures_test.dart
diff --git a/tests/lib/async/futures_test.dart b/tests/lib/async/futures_test.dart
index 446d93b17fe2f2403fadd76a249ff6c779247eda..936c5187d1f613739073200c8d014165e8ca81c7 100644
--- a/tests/lib/async/futures_test.dart
+++ b/tests/lib/async/futures_test.dart
@@ -3,9 +3,9 @@
// BSD-style license that can be found in the LICENSE file.
library futures_test;
+import 'package:async_helper/async_helper.dart';
import "package:expect/expect.dart";
import 'dart:async';
-import 'dart:isolate';
Future testWaitEmpty() {
List<Future> futures = new List<Future>();
@@ -114,11 +114,9 @@ main() {
futures.add(testForEach());
futures.add(testForEachWithException());
- // Use a receive port for blocking the test.
- // Note that if the test fails, the program will not end.
- ReceivePort port = new ReceivePort();
+ asyncStart();
Future.wait(futures).then((List list) {
Expect.equals(9, list.length);
- port.close();
+ asyncEnd();
});
}
« no previous file with comments | « tests/lib/async/future_test.dart ('k') | tests/lib/async/intercept_run_async3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698