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

Side by Side Diff: tests/language/math_vm_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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/language/map_test.dart ('k') | tests/language/mega_load_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) 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 // Tests that the VM does not crash on weird corner cases of class Math. 4 // Tests that the VM does not crash on weird corner cases of class Math.
5 // VMOptions=--optimization_counter_threshold=100 5 // VMOptions=--optimization_counter_threshold=100
6 6
7 library math_vm_test; 7 library math_vm_test;
8 8
9 import "package:expect/expect.dart";
10 import 'dart:math'; 9 import 'dart:math';
11 10
12 class FakeNumber { 11 class FakeNumber {
13 const FakeNumber(); 12 const FakeNumber();
14 void toDouble() {} 13 void toDouble() {}
15 } 14 }
16 15
17 class MathTest { 16 class MathTest {
18 static bool testParseInt(x) { 17 static bool testParseInt(x) {
19 try { 18 try {
(...skipping 23 matching lines...) Expand all
43 Expect.equals((1 << 32).toDouble(), pow(2.0, 32)); 42 Expect.equals((1 << 32).toDouble(), pow(2.0, 32));
44 } 43 }
45 44
46 45
47 main() { 46 main() {
48 for (int i = 0; i < 200; i++) { 47 for (int i = 0; i < 200; i++) {
49 MathTest.testMain(); 48 MathTest.testMain();
50 testDoublePow(); 49 testDoublePow();
51 } 50 }
52 } 51 }
OLDNEW
« no previous file with comments | « tests/language/map_test.dart ('k') | tests/language/mega_load_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698