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

Side by Side Diff: tests/lib_strong/async/zone_create_timer_test.dart

Issue 2802973005: Migrate async tests to strong (Closed)
Patch Set: Created 3 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'package:expect/expect.dart';
6 import 'package:async_helper/async_helper.dart';
7 import 'dart:async';
8
9 main() {
10 Completer done = new Completer();
11 List events = [];
12
13 Expect.identical(Zone.ROOT, Zone.current);
14 Zone forked;
15 forked = Zone.current.fork(specification: new ZoneSpecification(
16 createTimer: (Zone self, ZoneDelegate parent, Zone origin,
17 Duration duration, f()) {
18 events.add("forked.createTimer");
19 return parent.createTimer(origin, duration, () {
20 events.add("wrapped function ${duration.inMilliseconds}");
21 f();
22 });
23 }));
24
25 asyncStart();
26 forked.run(() {
27 new Timer(Duration.ZERO, () {
28 events.add("createTimer");
29 Expect.identical(forked, Zone.current);
30 done.complete(true);
31 });
32 });
33
34 Expect.identical(Zone.ROOT, Zone.current);
35 events.add("after createTimer");
36
37 done.future.whenComplete(() {
38 Expect.listEquals(
39 [ "forked.createTimer", "after createTimer", "wrapped function 0",
40 "createTimer" ],
41 events);
42 asyncEnd();
43 });
44 }
OLDNEW
« no previous file with comments | « tests/lib_strong/async/zone_create_timer2_test.dart ('k') | tests/lib_strong/async/zone_debug_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698