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

Side by Side Diff: tests/lib_strong/async/zone_bind_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
12 Expect.identical(Zone.ROOT, Zone.current);
13 // New zone, does nothing by itself.
14 Zone forked = Zone.current.fork(specification: new ZoneSpecification());
15
16 int ctr = 0;
17 void expectZone([timer]) {
18 Expect.identical(forked, Zone.current);
19 if (timer != null) timer.cancel();
20 if (++ctr == 3) {
21 asyncEnd();
22 }
23 }
24
25 asyncStart();
26 Duration now = const Duration(seconds: 0);
27 // Check that the callback is bound to the zone.
28 forked.scheduleMicrotask(expectZone);
29 forked.createTimer(now, expectZone);
30 forked.createPeriodicTimer(now, expectZone);
31 }
OLDNEW
« no previous file with comments | « tests/lib_strong/async/zone_bind_callback_unary_test.dart ('k') | tests/lib_strong/async/zone_create_periodic_timer_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698