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 import "package:unittest/unittest.dart"; | 6 import "package:test/test.dart"; |
7 | 7 |
8 test(int milliseconds) { | 8 sleepTest(int milliseconds) { |
9 var watch = new Stopwatch(); | 9 var watch = new Stopwatch(); |
10 watch.start(); | 10 watch.start(); |
11 sleep(new Duration(milliseconds: milliseconds)); | 11 sleep(new Duration(milliseconds: milliseconds)); |
12 watch.stop(); | 12 watch.stop(); |
13 expect(watch.elapsedMilliseconds, greaterThanOrEqualTo(milliseconds)); | 13 expect(watch.elapsedMilliseconds, greaterThanOrEqualTo(milliseconds)); |
14 } | 14 } |
15 | 15 |
16 main() { | 16 main() { |
17 test(0); | 17 test("zero", () { |
18 test(1); | 18 sleepTest(0); |
19 test(10); | 19 }); |
20 test(100); | 20 test("one", () { |
21 bool sawError = false; | 21 sleepTest(1); |
22 try { | 22 }); |
23 sleep(new Duration(milliseconds: -1)); | 23 test("ten", () { |
24 expect(false, isTrue); // should not reach here. | 24 sleepTest(10); |
25 } on ArgumentError catch(e) { | 25 }); |
26 sawError = true; | 26 test("100", () { |
27 } | 27 sleepTest(100); |
28 expect(sawError, isTrue); | 28 }); |
| 29 test("error", () { |
| 30 bool sawError = false; |
| 31 try { |
| 32 sleep(new Duration(milliseconds: -1)); |
| 33 expect(false, isTrue); // should not reach here. |
| 34 } on ArgumentError catch(e) { |
| 35 sawError = true; |
| 36 } |
| 37 expect(sawError, isTrue); |
| 38 }); |
29 } | 39 } |
OLD | NEW |