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

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

Issue 26151002: Rename runAsync to scheduleMicrotask. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add test. Created 7 years, 2 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/zone_run_test.dart ('k') | tests/standalone/io/http_server_early_client_close_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/lib/async/zone_run_unary_test.dart
diff --git a/tests/lib/async/zone_run_unary_test.dart b/tests/lib/async/zone_run_unary_test.dart
index 61f8ce81d9f73efc25a863a6cd4780b250538d94..c9dea3e9fd46cd2bcad9f10a941375c76b4c3f15 100644
--- a/tests/lib/async/zone_run_unary_test.dart
+++ b/tests/lib/async/zone_run_unary_test.dart
@@ -44,21 +44,21 @@ main() {
result = forked.runUnary((arg) {
Expect.identical(forked, Zone.current);
events.add("run closure 2");
- runAsync(() {
+ scheduleMicrotask(() {
events.add("run closure 3");
Expect.identical(forked, Zone.current);
done.complete(true);
});
return -arg - 8;
}, 490);
- events.add("after nested runAsync");
+ events.add("after nested scheduleMicrotask");
Expect.equals(-499, result);
done.future.whenComplete(() {
Expect.listEquals(
["zone forked", "forked.run1", "run closure", "executed run",
"forked.run1", "executed run2", "forked.run1", "run closure 2",
- "after nested runAsync", "run closure 3"],
+ "after nested scheduleMicrotask", "run closure 3"],
events);
asyncEnd();
});
« no previous file with comments | « tests/lib/async/zone_run_test.dart ('k') | tests/standalone/io/http_server_early_client_close_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698