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

Unified Diff: standalone/src/OptionsTest.dart

Issue 8412007: - Add a test for basic passing of arguments from the command line. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/tests/
Patch Set: '' Created 9 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: standalone/src/OptionsTest.dart
===================================================================
--- standalone/src/OptionsTest.dart (revision 0)
+++ standalone/src/OptionsTest.dart (revision 0)
@@ -0,0 +1,30 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+// Stress test isolate generation.
+// DartOptions=tests/standalone/src/OptionsTest.dart 10 OptionsTest 20
+
+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("OptionsTest", opts.arguments[1]);
+ Expect.equals(20, Math.parseInt(opts.arguments[2]));
+
+ // 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("OptionsTest", opts.arguments[1]);
+ Expect.equals(20, Math.parseInt(opts.arguments[2]));
+ Expect.equals("Fourth", opts.arguments[3]);
siva 2011/11/03 22:03:33 You should also modify one of the existing argumen
+
+ // 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("OptionsTest", opts2.arguments[1]);
+ Expect.equals(20, Math.parseInt(opts2.arguments[2]));
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698