OLD | NEW |
---|---|
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 "dart:io"; | 5 import "dart:io"; |
6 | 6 |
7 test(int milliseconds) { | |
8 var watch = new Stopwatch(); | |
9 watch.start(); | |
10 sleep(new Duration(milliseconds: milliseconds)); | |
Bob Nystrom
2013/04/05 15:51:57
How about a test for passing a zero duration? Nega
Søren Gjesse
2013/04/08 08:05:59
Good point. See https://codereview.chromium.org/13
| |
11 watch.stop(); | |
12 Expect.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds); | |
13 } | |
14 | |
7 main() { | 15 main() { |
8 stdout.write("standard out"); | 16 test(1); |
9 stderr.write("standard error"); | 17 test(10); |
10 exitCode = 25; | 18 test(100); |
11 } | 19 } |
OLD | NEW |