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

Unified Diff: tests/standalone/src/io/TimerTest.dart

Issue 10252020: test rename overhaul: step 12 - standalone (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/standalone/src/io/TimerRepeatTest.dart ('k') | tests/standalone/src/io/UrlEncodingTest.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/standalone/src/io/TimerTest.dart
diff --git a/tests/standalone/src/io/TimerTest.dart b/tests/standalone/src/io/TimerTest.dart
deleted file mode 100644
index 44f9673ae3e79ce2fe7292b9e5b4c1abadf8864c..0000000000000000000000000000000000000000
--- a/tests/standalone/src/io/TimerTest.dart
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-#import("dart:io");
-
-class TimerTest {
-
- static final int _STARTTIMEOUT = 1050;
- static final int _DECREASE = 200;
- static final int _ITERATIONS = 5;
-
- static void testSimpleTimer() {
-
- void timeoutHandler(Timer timer) {
- int endTime = (new Date.now()).value;
- Expect.equals(true, (endTime - _startTime) >= _timeout);
- if (_iteration < _ITERATIONS) {
- _iteration++;
- _timeout = _timeout - _DECREASE;
- _startTime = (new Date.now()).value;
- new Timer(_timeout, timeoutHandler);
- }
- }
-
- _iteration = 0;
- _timeout = _STARTTIMEOUT;
- _startTime = (new Date.now()).value;
- new Timer(_timeout, timeoutHandler);
- }
-
- static void testMain() {
- testSimpleTimer();
- }
-
- static int _startTime;
- static int _timeout;
- static int _iteration;
-}
-
-main() {
- TimerTest.testMain();
-}
« no previous file with comments | « tests/standalone/src/io/TimerRepeatTest.dart ('k') | tests/standalone/src/io/UrlEncodingTest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698