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 "package:expect/expect.dart"; |
5 import "dart:io"; | 6 import "dart:io"; |
6 | 7 |
7 test(int milliseconds) { | 8 test(int milliseconds) { |
8 var watch = new Stopwatch(); | 9 var watch = new Stopwatch(); |
9 watch.start(); | 10 watch.start(); |
10 sleep(new Duration(milliseconds: milliseconds)); | 11 sleep(new Duration(milliseconds: milliseconds)); |
11 watch.stop(); | 12 watch.stop(); |
12 Expect.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds); | 13 Expect.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds); |
13 } | 14 } |
14 | 15 |
15 main() { | 16 main() { |
16 test(0); | 17 test(0); |
17 test(1); | 18 test(1); |
18 test(10); | 19 test(10); |
19 test(100); | 20 test(100); |
20 Expect.throws(() => sleep(new Duration(milliseconds: -1)), | 21 Expect.throws(() => sleep(new Duration(milliseconds: -1)), |
21 (e) => e is ArgumentError); | 22 (e) => e is ArgumentError); |
22 } | 23 } |
OLD | NEW |