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

Unified Diff: tests/standalone/io/options_test.dart

Issue 11783009: Big merge from experimental to bleeding edge. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 0c93f0381befc1b67d9126478ab956b72707704a..d326ab4a5265de3fac3e592fef5d8a69ee3980d6 100644
--- a/tests/standalone/io/options_test.dart
+++ b/tests/standalone/io/options_test.dart
@@ -11,9 +11,9 @@ main() {
// Basic test for functionality.
Expect.equals(3, opts.arguments.length);
- Expect.equals(10, parseInt(opts.arguments[0]));
+ Expect.equals(10, int.parse(opts.arguments[0]));
Expect.equals("options_test", opts.arguments[1]);
- Expect.equals(20, parseInt(opts.arguments[2]));
+ Expect.equals(20, int.parse(opts.arguments[2]));
Expect.isTrue(opts.executable.contains('dart'));
Expect.isTrue(opts.script.replaceAll('\\', '/').
endsWith('tests/standalone/io/options_test.dart'));
@@ -21,15 +21,15 @@ main() {
// Now add an additional argument.
opts.arguments.add("Fourth");
Expect.equals(4, opts.arguments.length);
- Expect.equals(10, parseInt(opts.arguments[0]));
+ Expect.equals(10, int.parse(opts.arguments[0]));
Expect.equals("options_test", opts.arguments[1]);
- Expect.equals(20, parseInt(opts.arguments[2]));
+ Expect.equals(20, int.parse(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, parseInt(opts2.arguments[0]));
+ Expect.equals(10, int.parse(opts2.arguments[0]));
Expect.equals("options_test", opts2.arguments[1]);
- Expect.equals(20, parseInt(opts2.arguments[2]));
+ Expect.equals(20, int.parse(opts2.arguments[2]));
}
« no previous file with comments | « tests/standalone/io/list_output_stream_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