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

Unified Diff: tests/corelib/nan_infinity_test.dart

Issue 11227042: isEven, isOdd, isNegative, isMaxValue, isMinValue, isInfinite, isPositive, isSingleValue. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase. Created 8 years, 2 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/nan_infinity_test.dart
diff --git a/tests/corelib/nan_infinity_test.dart b/tests/corelib/nan_infinity_test.dart
index 0bdb8cbbbfb7b27b2403b0a40e691b97b1d804b3..35bad82014d280534c7004bea5da0de1a9d82020 100644
--- a/tests/corelib/nan_infinity_test.dart
+++ b/tests/corelib/nan_infinity_test.dart
@@ -5,12 +5,12 @@
// 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.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());
@@ -32,6 +32,6 @@ void main() {
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((3.0 * double.NAN).isNaN);
Expect.isTrue(double.INFINITY > double.NEGATIVE_INFINITY);
}

Powered by Google App Engine
This is Rietveld 408576698