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

Side by Side Diff: tests/corelib/compare_to_test.dart

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated latest tests. Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // Dart test for testing Math.min and Math.max. 4 // Dart test for testing Math.min and Math.max.
5 5
6 import "package:expect/expect.dart";
7
6 negate(x) => -x; 8 negate(x) => -x;
7 9
8 main() { 10 main() {
9 // Test matrix: 11 // Test matrix:
10 // -inf < -499.0 == -499 < -0.0 < 0.0 == 0 < 499.0 == 499 < +inf < -NaN, NaN. 12 // -inf < -499.0 == -499 < -0.0 < 0.0 == 0 < 499.0 == 499 < +inf < -NaN, NaN.
11 var inf = double.INFINITY; 13 var inf = double.INFINITY;
12 var nan = double.NAN; 14 var nan = double.NAN;
13 var mnan = negate(nan); 15 var mnan = negate(nan);
14 16
15 Expect.equals(0, (-inf).compareTo(-inf)); 17 Expect.equals(0, (-inf).compareTo(-inf));
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 Expect.equals(1, nan.compareTo(-499)); 127 Expect.equals(1, nan.compareTo(-499));
126 Expect.equals(1, nan.compareTo(-0.0)); 128 Expect.equals(1, nan.compareTo(-0.0));
127 Expect.equals(1, nan.compareTo(0)); 129 Expect.equals(1, nan.compareTo(0));
128 Expect.equals(1, nan.compareTo(0.0)); 130 Expect.equals(1, nan.compareTo(0.0));
129 Expect.equals(1, nan.compareTo(499.0)); 131 Expect.equals(1, nan.compareTo(499.0));
130 Expect.equals(1, nan.compareTo(499)); 132 Expect.equals(1, nan.compareTo(499));
131 Expect.equals(1, nan.compareTo(inf)); 133 Expect.equals(1, nan.compareTo(inf));
132 Expect.equals(0, nan.compareTo(nan)); 134 Expect.equals(0, nan.compareTo(nan));
133 Expect.equals(0, nan.compareTo(mnan)); 135 Expect.equals(0, nan.compareTo(mnan));
134 } 136 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698