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

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

Issue 12212016: Remove Expect from core library. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 10 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 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 "package:expect/expect.dart";
9 10
10 void parseDoubleThrowsFormatException(str) { 11 void parseDoubleThrowsFormatException(str) {
11 Expect.throws(() => double.parse(str), (e) => e is FormatException); 12 Expect.throws(() => double.parse(str), (e) => e is FormatException);
12 } 13 }
13 14
14 void main() { 15 void main() {
15 Expect.equals(499.0, double.parse("499")); 16 Expect.equals(499.0, double.parse("499"));
16 Expect.equals(499.0, double.parse("499.0")); 17 Expect.equals(499.0, double.parse("499.0"));
17 Expect.equals(499.0, double.parse("499.0")); 18 Expect.equals(499.0, double.parse("499.0"));
18 Expect.equals(499.0, double.parse("+499")); 19 Expect.equals(499.0, double.parse("+499"));
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 parseDoubleThrowsFormatException(" -5. "); 112 parseDoubleThrowsFormatException(" -5. ");
112 parseDoubleThrowsFormatException("1234567.e2"); 113 parseDoubleThrowsFormatException("1234567.e2");
113 parseDoubleThrowsFormatException(" 1234567.e2 "); 114 parseDoubleThrowsFormatException(" 1234567.e2 ");
114 parseDoubleThrowsFormatException(" +1234567.e2 "); 115 parseDoubleThrowsFormatException(" +1234567.e2 ");
115 parseDoubleThrowsFormatException(" -1234567.e2 "); 116 parseDoubleThrowsFormatException(" -1234567.e2 ");
116 parseDoubleThrowsFormatException("+0x1234567890"); 117 parseDoubleThrowsFormatException("+0x1234567890");
117 parseDoubleThrowsFormatException(" +0x1234567890 "); 118 parseDoubleThrowsFormatException(" +0x1234567890 ");
118 parseDoubleThrowsFormatException(" +0x100 "); 119 parseDoubleThrowsFormatException(" +0x100 ");
119 parseDoubleThrowsFormatException("+0x100"); 120 parseDoubleThrowsFormatException("+0x100");
120 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698