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

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

Issue 10854142: Add #library tag to please the testing setup we use on the build bots. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/corelib/math_parse_double_test.dart ('k') | no next file » | 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 // 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_test');
8 #import('dart:math', prefix: 'math'); 9 #import('dart:math', prefix: 'math');
9 10
10 class MathTest { 11 class MathTest {
11 static void testConstants() { 12 static void testConstants() {
12 // Source for mathematical constants is Wolfram Alpha. 13 // Source for mathematical constants is Wolfram Alpha.
13 Expect.equals(2.7182818284590452353602874713526624977572470936999595749669, 14 Expect.equals(2.7182818284590452353602874713526624977572470936999595749669,
14 Math.E); 15 Math.E);
15 Expect.equals(2.3025850929940456840179914546843642076011014886287729760333, 16 Expect.equals(2.3025850929940456840179914546843642076011014886287729760333,
16 Math.LN10); 17 Math.LN10);
17 Expect.equals(0.6931471805599453094172321214581765680755001343602552541206, 18 Expect.equals(0.6931471805599453094172321214581765680755001343602552541206,
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
504 testExp(); 505 testExp();
505 testPow(); 506 testPow();
506 testParseInt(); 507 testParseInt();
507 } 508 }
508 } 509 }
509 510
510 main() { 511 main() {
511 MathTest.testMain(); 512 MathTest.testMain();
512 MathLibraryTest.testMain(); 513 MathLibraryTest.testMain();
513 } 514 }
OLDNEW
« no previous file with comments | « tests/corelib/math_parse_double_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698