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

Unified Diff: tests/corelib/src/NanInfinityTest.dart

Issue 10244009: test rename overhaul: step 7 - corelib tests (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
Index: tests/corelib/src/NanInfinityTest.dart
diff --git a/tests/corelib/src/NanInfinityTest.dart b/tests/corelib/src/NanInfinityTest.dart
deleted file mode 100644
index 0bdb8cbbbfb7b27b2403b0a40e691b97b1d804b3..0000000000000000000000000000000000000000
--- a/tests/corelib/src/NanInfinityTest.dart
+++ /dev/null
@@ -1,37 +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.
-
-// Dart test program for testing NaN and Infinity.
-
-void main() {
- Expect.isTrue(double.NAN.isNaN());
- Expect.isFalse(double.NAN.isInfinite());
- Expect.isFalse(double.INFINITY.isNaN());
- Expect.isTrue(double.INFINITY.isInfinite());
- Expect.isFalse(double.NEGATIVE_INFINITY.isNaN());
- Expect.isTrue(double.NEGATIVE_INFINITY.isInfinite());
- Expect.equals("NaN", double.NAN.toString());
- Expect.equals("Infinity", double.INFINITY.toString());
- Expect.equals("-Infinity", double.NEGATIVE_INFINITY.toString());
- Expect.isFalse(double.NAN == double.NAN);
- Expect.isTrue(double.INFINITY == double.INFINITY);
- Expect.isTrue(double.NEGATIVE_INFINITY == double.NEGATIVE_INFINITY);
- Expect.isFalse(double.NAN < double.NAN);
- Expect.isFalse(double.NAN < double.INFINITY);
- Expect.isFalse(double.NAN < double.NEGATIVE_INFINITY);
- Expect.isFalse(double.NAN > double.NAN);
- Expect.isFalse(double.NAN > double.INFINITY);
- Expect.isFalse(double.NAN > double.NEGATIVE_INFINITY);
- Expect.isFalse(double.NAN == double.NAN);
- Expect.isFalse(double.NAN == double.INFINITY);
- Expect.isFalse(double.NAN == double.NEGATIVE_INFINITY);
- Expect.isFalse(double.INFINITY < double.NAN);
- Expect.isFalse(double.NEGATIVE_INFINITY < double.NAN);
- Expect.isFalse(double.INFINITY > double.NAN);
- Expect.isFalse(double.NEGATIVE_INFINITY > double.NAN);
- Expect.isFalse(double.INFINITY == double.NAN);
- Expect.isFalse(double.NEGATIVE_INFINITY == double.NAN);
- Expect.isTrue((3.0 * double.NAN).isNaN());
- Expect.isTrue(double.INFINITY > double.NEGATIVE_INFINITY);
-}

Powered by Google App Engine
This is Rietveld 408576698