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

Side by Side Diff: tests/standalone/src/OptionsTest.dart

Issue 9159013: Add script attribute to Options class, providing the name of the running script. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« corelib/src/options.dart ('K') | « runtime/bin/main.cc ('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 // Stress test isolate generation. 4 // Stress test isolate generation.
5 // DartOptions=tests/standalone/src/OptionsTest.dart 10 OptionsTest 20 5 // DartOptions=tests/standalone/src/OptionsTest.dart 10 OptionsTest 20
6 6
7 main() { 7 main() {
8 var opts = new Options(); 8 var opts = new Options();
9 9
10 // Basic test for functionality. 10 // Basic test for functionality.
11 Expect.equals(3, opts.arguments.length); 11 Expect.equals(3, opts.arguments.length);
12 Expect.equals(10, Math.parseInt(opts.arguments[0])); 12 Expect.equals(10, Math.parseInt(opts.arguments[0]));
13 Expect.equals("OptionsTest", opts.arguments[1]); 13 Expect.equals("OptionsTest", opts.arguments[1]);
14 Expect.equals(20, Math.parseInt(opts.arguments[2])); 14 Expect.equals(20, Math.parseInt(opts.arguments[2]));
15 Expect.isTrue(opts.script.replaceAll('\\', '/').
16 endsWith('tests/standalone/src/OptionsTest.dart'));
15 17
16 // Now add an additional argument. 18 // Now add an additional argument.
17 opts.arguments.add("Fourth"); 19 opts.arguments.add("Fourth");
18 Expect.equals(4, opts.arguments.length); 20 Expect.equals(4, opts.arguments.length);
19 Expect.equals(10, Math.parseInt(opts.arguments[0])); 21 Expect.equals(10, Math.parseInt(opts.arguments[0]));
20 Expect.equals("OptionsTest", opts.arguments[1]); 22 Expect.equals("OptionsTest", opts.arguments[1]);
21 Expect.equals(20, Math.parseInt(opts.arguments[2])); 23 Expect.equals(20, Math.parseInt(opts.arguments[2]));
22 Expect.equals("Fourth", opts.arguments[3]); 24 Expect.equals("Fourth", opts.arguments[3]);
23 25
24 // Check that a new options object still gets the original arguments. 26 // Check that a new options object still gets the original arguments.
25 var opts2 = new Options(); 27 var opts2 = new Options();
26 Expect.equals(3, opts2.arguments.length); 28 Expect.equals(3, opts2.arguments.length);
27 Expect.equals(10, Math.parseInt(opts2.arguments[0])); 29 Expect.equals(10, Math.parseInt(opts2.arguments[0]));
28 Expect.equals("OptionsTest", opts2.arguments[1]); 30 Expect.equals("OptionsTest", opts2.arguments[1]);
29 Expect.equals(20, Math.parseInt(opts2.arguments[2])); 31 Expect.equals(20, Math.parseInt(opts2.arguments[2]));
30 } 32 }
OLDNEW
« corelib/src/options.dart ('K') | « runtime/bin/main.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698