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

Side by Side Diff: pkg/scheduled_test/test/utils.dart

Issue 12449016: Use ".."-style imports in scheduled_test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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
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 library test_utils; 5 library test_utils;
6 6
7 import 'dart:async'; 7 import 'dart:async';
8 8
9 import 'package:scheduled_test/src/utils.dart'; 9 import '../lib/src/utils.dart';
10 import 'package:scheduled_test/src/mock_clock.dart' as mock_clock; 10 import '../lib/src/mock_clock.dart' as mock_clock;
11 11
12 export 'package:scheduled_test/src/utils.dart'; 12 export '../lib/src/utils.dart';
13 13
14 /// Wraps [input] to provide a timeout. If [input] completes before 14 /// Wraps [input] to provide a timeout. If [input] completes before
15 /// [milliseconds] have passed, then the return value completes in the same way. 15 /// [milliseconds] have passed, then the return value completes in the same way.
16 /// However, if [milliseconds] pass before [input] has completed, [onTimeout] is 16 /// However, if [milliseconds] pass before [input] has completed, [onTimeout] is
17 /// run and its result is passed to [input] (with chaining, if it returns a 17 /// run and its result is passed to [input] (with chaining, if it returns a
18 /// [Future]). 18 /// [Future]).
19 /// 19 ///
20 /// Note that timing out will not cancel the asynchronous operation behind 20 /// Note that timing out will not cancel the asynchronous operation behind
21 /// [input]. 21 /// [input].
22 Future timeout(Future input, int milliseconds, onTimeout()) { 22 Future timeout(Future input, int milliseconds, onTimeout()) {
(...skipping 14 matching lines...) Expand all
37 } 37 }
38 38
39 /// Returns a [Future] that will complete in [milliseconds]. 39 /// Returns a [Future] that will complete in [milliseconds].
40 Future sleep(int milliseconds) { 40 Future sleep(int milliseconds) {
41 var completer = new Completer(); 41 var completer = new Completer();
42 mock_clock.newTimer(new Duration(milliseconds: milliseconds), () { 42 mock_clock.newTimer(new Duration(milliseconds: milliseconds), () {
43 completer.complete(); 43 completer.complete();
44 }); 44 });
45 return completer.future; 45 return completer.future;
46 } 46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698