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

Side by Side Diff: tests/lib/async/zone_run_guarded_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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/lib/async/zone_future_run_async_test.dart ('k') | tests/lib/async/zone_run_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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 import 'package:expect/expect.dart'; 5 import 'package:expect/expect.dart';
6 import 'package:async_helper/async_helper.dart'; 6 import 'package:async_helper/async_helper.dart';
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 main() { 9 main() {
10 Completer done = new Completer(); 10 Completer done = new Completer();
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 Expect.listEquals( 50 Expect.listEquals(
51 [ "forked.run", "runGuarded 1", "after runGuarded 1", 51 [ "forked.run", "runGuarded 1", "after runGuarded 1",
52 "forked.run", "runGuarded 2", "forked.handleUncaught 42" ], 52 "forked.run", "runGuarded 2", "forked.handleUncaught 42" ],
53 events); 53 events);
54 54
55 events.clear(); 55 events.clear();
56 asyncStart(); 56 asyncStart();
57 result = forked.runGuarded(() { 57 result = forked.runGuarded(() {
58 Expect.identical(forked, Zone.current); 58 Expect.identical(forked, Zone.current);
59 events.add("run closure"); 59 events.add("run closure");
60 runAsync(() { 60 scheduleMicrotask(() {
61 events.add("run closure 2"); 61 events.add("run closure 2");
62 Expect.identical(forked, Zone.current); 62 Expect.identical(forked, Zone.current);
63 done.complete(true); 63 done.complete(true);
64 throw 88; 64 throw 88;
65 }); 65 });
66 throw 1234; 66 throw 1234;
67 }); 67 });
68 events.add("after nested runAsync"); 68 events.add("after nested scheduleMicrotask");
69 Expect.equals(499, result); 69 Expect.equals(499, result);
70 70
71 done.future.whenComplete(() { 71 done.future.whenComplete(() {
72 Expect.listEquals( 72 Expect.listEquals(
73 ["forked.run", "run closure", "forked.handleUncaught 1234", 73 ["forked.run", "run closure", "forked.handleUncaught 1234",
74 "after nested runAsync", "forked.run", "run closure 2", 74 "after nested scheduleMicrotask", "forked.run", "run closure 2",
75 "forked.handleUncaught 88" ], 75 "forked.handleUncaught 88" ],
76 events); 76 events);
77 asyncEnd(); 77 asyncEnd();
78 }); 78 });
79 } 79 }
OLDNEW
« no previous file with comments | « tests/lib/async/zone_future_run_async_test.dart ('k') | tests/lib/async/zone_run_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698