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

Unified Diff: tests/standalone/io/options_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 side-by-side diff with in-line comments
Download patch
Index: tests/standalone/io/options_test.dart
diff --git a/tests/standalone/io/options_test.dart b/tests/standalone/io/options_test.dart
index f9175aaa30cd4d7ed2246ffaff157994e83788e5..59792c7e59c8fdab93912ca8ffac37764f8179f0 100644
--- a/tests/standalone/io/options_test.dart
+++ b/tests/standalone/io/options_test.dart
@@ -4,14 +4,16 @@
// Stress test isolate generation.
// DartOptions=tests/standalone/io/options_test.dart 10 options_test 20
+#import('dart:math');
+
main() {
var opts = new Options();
// Basic test for functionality.
Expect.equals(3, opts.arguments.length);
- Expect.equals(10, Math.parseInt(opts.arguments[0]));
+ Expect.equals(10, parseInt(opts.arguments[0]));
Expect.equals("options_test", opts.arguments[1]);
- Expect.equals(20, Math.parseInt(opts.arguments[2]));
+ Expect.equals(20, parseInt(opts.arguments[2]));
Expect.isTrue(opts.executable.contains('dart'));
Expect.isTrue(opts.script.replaceAll('\\', '/').
endsWith('tests/standalone/io/options_test.dart'));
@@ -19,15 +21,15 @@ main() {
// Now add an additional argument.
opts.arguments.add("Fourth");
Expect.equals(4, opts.arguments.length);
- Expect.equals(10, Math.parseInt(opts.arguments[0]));
+ Expect.equals(10, parseInt(opts.arguments[0]));
Expect.equals("options_test", opts.arguments[1]);
- Expect.equals(20, Math.parseInt(opts.arguments[2]));
+ Expect.equals(20, parseInt(opts.arguments[2]));
Expect.equals("Fourth", opts.arguments[3]);
// Check that a new options object still gets the original arguments.
var opts2 = new Options();
Expect.equals(3, opts2.arguments.length);
- Expect.equals(10, Math.parseInt(opts2.arguments[0]));
+ Expect.equals(10, parseInt(opts2.arguments[0]));
Expect.equals("options_test", opts2.arguments[1]);
- Expect.equals(20, Math.parseInt(opts2.arguments[2]));
+ Expect.equals(20, parseInt(opts2.arguments[2]));
}
« no previous file with comments | « tests/standalone/io/mime_multipart_parser_test.dart ('k') | tests/standalone/io/process_check_arguments_script.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698