| OLD | NEW |
| 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 "package:expect/expect.dart"; |
| 7 import "dart:math"; | 8 import "dart:math"; |
| 8 import "dart:io"; | 9 import "dart:io"; |
| 9 | 10 |
| 10 main() { | 11 main() { |
| 11 var opts = new Options(); | 12 var opts = new Options(); |
| 12 | 13 |
| 13 // Basic test for functionality. | 14 // Basic test for functionality. |
| 14 Expect.equals(3, opts.arguments.length); | 15 Expect.equals(3, opts.arguments.length); |
| 15 Expect.equals(10, int.parse(opts.arguments[0])); | 16 Expect.equals(10, int.parse(opts.arguments[0])); |
| 16 Expect.equals("options_test", opts.arguments[1]); | 17 Expect.equals("options_test", opts.arguments[1]); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 27 Expect.equals(20, int.parse(opts.arguments[2])); | 28 Expect.equals(20, int.parse(opts.arguments[2])); |
| 28 Expect.equals("Fourth", opts.arguments[3]); | 29 Expect.equals("Fourth", opts.arguments[3]); |
| 29 | 30 |
| 30 // Check that a new options object still gets the original arguments. | 31 // Check that a new options object still gets the original arguments. |
| 31 var opts2 = new Options(); | 32 var opts2 = new Options(); |
| 32 Expect.equals(3, opts2.arguments.length); | 33 Expect.equals(3, opts2.arguments.length); |
| 33 Expect.equals(10, int.parse(opts2.arguments[0])); | 34 Expect.equals(10, int.parse(opts2.arguments[0])); |
| 34 Expect.equals("options_test", opts2.arguments[1]); | 35 Expect.equals("options_test", opts2.arguments[1]); |
| 35 Expect.equals(20, int.parse(opts2.arguments[2])); | 36 Expect.equals(20, int.parse(opts2.arguments[2])); |
| 36 } | 37 } |
| OLD | NEW |