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

Side by Side Diff: tests/lib/async/zone_run_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_run_guarded_test.dart ('k') | tests/lib/async/zone_run_unary_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 26 matching lines...) Expand all
37 Expect.fail("should not be invoked"); 37 Expect.fail("should not be invoked");
38 }); 38 });
39 Expect.equals(42, result); 39 Expect.equals(42, result);
40 events.add("executed run2"); 40 events.add("executed run2");
41 41
42 asyncStart(); 42 asyncStart();
43 shouldForward = true; 43 shouldForward = true;
44 result = forked.run(() { 44 result = forked.run(() {
45 Expect.identical(forked, Zone.current); 45 Expect.identical(forked, Zone.current);
46 events.add("run closure 2"); 46 events.add("run closure 2");
47 runAsync(() { 47 scheduleMicrotask(() {
48 events.add("run closure 3"); 48 events.add("run closure 3");
49 Expect.identical(forked, Zone.current); 49 Expect.identical(forked, Zone.current);
50 done.complete(true); 50 done.complete(true);
51 }); 51 });
52 return 1234; 52 return 1234;
53 }); 53 });
54 events.add("after nested runAsync"); 54 events.add("after nested scheduleMicrotask");
55 Expect.equals(1234, result); 55 Expect.equals(1234, result);
56 56
57 done.future.whenComplete(() { 57 done.future.whenComplete(() {
58 Expect.listEquals( 58 Expect.listEquals(
59 ["zone forked", "forked.run", "run closure", "executed run", 59 ["zone forked", "forked.run", "run closure", "executed run",
60 "forked.run", "executed run2", "forked.run", "run closure 2", 60 "forked.run", "executed run2", "forked.run", "run closure 2",
61 "after nested runAsync", "forked.run", "run closure 3"], 61 "after nested scheduleMicrotask", "forked.run", "run closure 3"],
62 events); 62 events);
63 asyncEnd(); 63 asyncEnd();
64 }); 64 });
65 } 65 }
OLDNEW
« no previous file with comments | « tests/lib/async/zone_run_guarded_test.dart ('k') | tests/lib/async/zone_run_unary_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698