OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |