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

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

Issue 1683233003: Use Stopwatch instead of DateTime to measure elapsed time in tests. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « tests/lib/async/timer_test.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 "package:expect/expect.dart";
6 import "dart:io"; 5 import "dart:io";
6 import "package:unittest/unittest.dart";
7 7
8 test(int milliseconds) { 8 test(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.isTrue(watch.elapsedMilliseconds + 1 >= milliseconds); 13 expect(watch.elapsedMilliseconds, greaterThanOrEqualTo(milliseconds));
14 } 14 }
15 15
16 main() { 16 main() {
17 test(0); 17 test(0);
18 test(1); 18 test(1);
19 test(10); 19 test(10);
20 test(100); 20 test(100);
21 Expect.throws(() => sleep(new Duration(milliseconds: -1)), 21 bool sawError = false;
22 (e) => e is ArgumentError); 22 try {
23 sleep(new Duration(milliseconds: -1));
24 expect(false, isTrue); // should not reach here.
25 } on ArgumentError catch(e) {
26 sawError = true;
27 }
28 expect(sawError, isTrue);
23 } 29 }
OLDNEW
« no previous file with comments | « tests/lib/async/timer_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698