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

Side by Side Diff: tests/lib/math/math_parse_double_test.dart

Issue 10829459: Deprecate Math object in corelib in favor of dart:math library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address review comments. Created 8 years, 4 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
« no previous file with comments | « tests/lib/math/math2_test.dart ('k') | tests/lib/math/min_max_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, 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 4
5 // We temporarily test both the new math library and the old Math 5 // We temporarily test both the new math library and the old Math
6 // class. This can easily be simplified once we get rid of the Math 6 // class. This can easily be simplified once we get rid of the Math
7 // class entirely. 7 // class entirely.
8 #library('math_parse_double_test'); 8 #library('math_parse_double_test');
9 #import('dart:math', prefix: 'math');
10 9
11 double parseDouble(String string) { 10 #import('dart:math');
12 num x = Math.parseDouble(string);
13 num y = math.parseDouble(string);
14 Expect.equals(x, y);
15 return x;
16 }
17 11
18 void parseDoubleThrowsFormatException(str) { 12 void parseDoubleThrowsFormatException(str) {
19 Expect.throws(() => Math.parseDouble(str), (e) => e is FormatException); 13 Expect.throws(() => parseDouble(str), (e) => e is FormatException);
20 Expect.throws(() => math.parseDouble(str), (e) => e is FormatException);
21 } 14 }
22 15
23 void main() { 16 void main() {
24 Expect.equals(499.0, parseDouble("499")); 17 Expect.equals(499.0, parseDouble("499"));
25 Expect.equals(499.0, parseDouble("499.0")); 18 Expect.equals(499.0, parseDouble("499.0"));
26 Expect.equals(499.0, parseDouble("499.0")); 19 Expect.equals(499.0, parseDouble("499.0"));
27 Expect.equals(499.0, parseDouble("+499")); 20 Expect.equals(499.0, parseDouble("+499"));
28 Expect.equals(-499.0, parseDouble("-499")); 21 Expect.equals(-499.0, parseDouble("-499"));
29 Expect.equals(499.0, parseDouble(" 499 ")); 22 Expect.equals(499.0, parseDouble(" 499 "));
30 Expect.equals(499.0, parseDouble(" +499 ")); 23 Expect.equals(499.0, parseDouble(" +499 "));
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 parseDoubleThrowsFormatException(" -5. "); 113 parseDoubleThrowsFormatException(" -5. ");
121 parseDoubleThrowsFormatException("1234567.e2"); 114 parseDoubleThrowsFormatException("1234567.e2");
122 parseDoubleThrowsFormatException(" 1234567.e2 "); 115 parseDoubleThrowsFormatException(" 1234567.e2 ");
123 parseDoubleThrowsFormatException(" +1234567.e2 "); 116 parseDoubleThrowsFormatException(" +1234567.e2 ");
124 parseDoubleThrowsFormatException(" -1234567.e2 "); 117 parseDoubleThrowsFormatException(" -1234567.e2 ");
125 parseDoubleThrowsFormatException("+0x1234567890"); 118 parseDoubleThrowsFormatException("+0x1234567890");
126 parseDoubleThrowsFormatException(" +0x1234567890 "); 119 parseDoubleThrowsFormatException(" +0x1234567890 ");
127 parseDoubleThrowsFormatException(" +0x100 "); 120 parseDoubleThrowsFormatException(" +0x100 ");
128 parseDoubleThrowsFormatException("+0x100"); 121 parseDoubleThrowsFormatException("+0x100");
129 } 122 }
OLDNEW
« no previous file with comments | « tests/lib/math/math2_test.dart ('k') | tests/lib/math/min_max_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698