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

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

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dart/tests/lib/math/math_parse_double_test.dart ('k') | dart/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) 2011, 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 library math_test; 5 #library("math_test.dart");
6 import "dart:math"; 6 #import("dart:math");
7 7
8 class MathTest { 8 class MathTest {
9 static void testConstants() { 9 static void testConstants() {
10 // Source for mathematical constants is Wolfram Alpha. 10 // Source for mathematical constants is Wolfram Alpha.
11 Expect.equals(2.7182818284590452353602874713526624977572470936999595749669, 11 Expect.equals(2.7182818284590452353602874713526624977572470936999595749669,
12 E); 12 E);
13 Expect.equals(2.3025850929940456840179914546843642076011014886287729760333, 13 Expect.equals(2.3025850929940456840179914546843642076011014886287729760333,
14 LN10); 14 LN10);
15 Expect.equals(0.6931471805599453094172321214581765680755001343602552541206, 15 Expect.equals(0.6931471805599453094172321214581765680755001343602552541206,
16 LN2); 16 LN2);
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 testLog(); 251 testLog();
252 testExp(); 252 testExp();
253 testPow(); 253 testPow();
254 testParseInt(); 254 testParseInt();
255 } 255 }
256 } 256 }
257 257
258 main() { 258 main() {
259 MathTest.testMain(); 259 MathTest.testMain();
260 } 260 }
OLDNEW
« no previous file with comments | « dart/tests/lib/math/math_parse_double_test.dart ('k') | dart/tests/lib/math/min_max_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698