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

Side by Side Diff: tests/standalone/io/options_test.dart

Issue 12794002: Move Options to dart:io. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
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 // Stress test isolate generation. 4 // Stress test isolate generation.
5 // DartOptions=tests/standalone/io/options_test.dart 10 options_test 20 5 // DartOptions=tests/standalone/io/options_test.dart 10 options_test 20
6 6
7 import "dart:math"; 7 import "dart:math";
8 import "dart:io";
8 9
9 main() { 10 main() {
10 var opts = new Options(); 11 var opts = new Options();
11 12
12 // Basic test for functionality. 13 // Basic test for functionality.
13 Expect.equals(3, opts.arguments.length); 14 Expect.equals(3, opts.arguments.length);
14 Expect.equals(10, int.parse(opts.arguments[0])); 15 Expect.equals(10, int.parse(opts.arguments[0]));
15 Expect.equals("options_test", opts.arguments[1]); 16 Expect.equals("options_test", opts.arguments[1]);
16 Expect.equals(20, int.parse(opts.arguments[2])); 17 Expect.equals(20, int.parse(opts.arguments[2]));
17 Expect.isTrue(opts.executable.contains('dart')); 18 Expect.isTrue(opts.executable.contains('dart'));
18 Expect.isTrue(opts.script.replaceAll('\\', '/'). 19 Expect.isTrue(opts.script.replaceAll('\\', '/').
19 endsWith('tests/standalone/io/options_test.dart')); 20 endsWith('tests/standalone/io/options_test.dart'));
20 21
21 // Now add an additional argument. 22 // Now add an additional argument.
22 opts.arguments.add("Fourth"); 23 opts.arguments.add("Fourth");
23 Expect.equals(4, opts.arguments.length); 24 Expect.equals(4, opts.arguments.length);
24 Expect.equals(10, int.parse(opts.arguments[0])); 25 Expect.equals(10, int.parse(opts.arguments[0]));
25 Expect.equals("options_test", opts.arguments[1]); 26 Expect.equals("options_test", opts.arguments[1]);
26 Expect.equals(20, int.parse(opts.arguments[2])); 27 Expect.equals(20, int.parse(opts.arguments[2]));
27 Expect.equals("Fourth", opts.arguments[3]); 28 Expect.equals("Fourth", opts.arguments[3]);
28 29
29 // Check that a new options object still gets the original arguments. 30 // Check that a new options object still gets the original arguments.
30 var opts2 = new Options(); 31 var opts2 = new Options();
31 Expect.equals(3, opts2.arguments.length); 32 Expect.equals(3, opts2.arguments.length);
32 Expect.equals(10, int.parse(opts2.arguments[0])); 33 Expect.equals(10, int.parse(opts2.arguments[0]));
33 Expect.equals("options_test", opts2.arguments[1]); 34 Expect.equals("options_test", opts2.arguments[1]);
34 Expect.equals(20, int.parse(opts2.arguments[2])); 35 Expect.equals(20, int.parse(opts2.arguments[2]));
35 } 36 }
OLDNEW
« no previous file with comments | « tests/compiler/dart2js/mini_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