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

Side by Side Diff: tests/standalone/io/sleep_test.dart

Issue 13497008: Add more tests and argument check to Process.sleep (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/io/process.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import "dart:io"; 5 import "dart:io";
6 6
7 test(int milliseconds) { 7 test(int milliseconds) {
8 var watch = new Stopwatch(); 8 var watch = new Stopwatch();
9 watch.start(); 9 watch.start();
10 sleep(new Duration(milliseconds: milliseconds)); 10 sleep(new Duration(milliseconds: milliseconds));
11 watch.stop(); 11 watch.stop();
12 Expect.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds); 12 Expect.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds);
13 } 13 }
14 14
15 main() { 15 main() {
16 test(0);
16 test(1); 17 test(1);
17 test(10); 18 test(10);
18 test(100); 19 test(100);
20 Expect.throws(() => sleep(new Duration(milliseconds: -1)),
21 (e) => e is ArgumentError);
19 } 22 }
OLDNEW
« no previous file with comments | « sdk/lib/io/process.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698