| 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 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("options_test", opts.arguments[1]); | 13 Expect.equals("options_test", 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.executable.contains('dart')); |
| 15 Expect.isTrue(opts.script.replaceAll('\\', '/'). | 16 Expect.isTrue(opts.script.replaceAll('\\', '/'). |
| 16 endsWith('tests/standalone/io/options_test.dart')); | 17 endsWith('tests/standalone/io/options_test.dart')); |
| 17 | 18 |
| 18 // Now add an additional argument. | 19 // Now add an additional argument. |
| 19 opts.arguments.add("Fourth"); | 20 opts.arguments.add("Fourth"); |
| 20 Expect.equals(4, opts.arguments.length); | 21 Expect.equals(4, opts.arguments.length); |
| 21 Expect.equals(10, Math.parseInt(opts.arguments[0])); | 22 Expect.equals(10, Math.parseInt(opts.arguments[0])); |
| 22 Expect.equals("options_test", opts.arguments[1]); | 23 Expect.equals("options_test", opts.arguments[1]); |
| 23 Expect.equals(20, Math.parseInt(opts.arguments[2])); | 24 Expect.equals(20, Math.parseInt(opts.arguments[2])); |
| 24 Expect.equals("Fourth", opts.arguments[3]); | 25 Expect.equals("Fourth", opts.arguments[3]); |
| 25 | 26 |
| 26 // Check that a new options object still gets the original arguments. | 27 // Check that a new options object still gets the original arguments. |
| 27 var opts2 = new Options(); | 28 var opts2 = new Options(); |
| 28 Expect.equals(3, opts2.arguments.length); | 29 Expect.equals(3, opts2.arguments.length); |
| 29 Expect.equals(10, Math.parseInt(opts2.arguments[0])); | 30 Expect.equals(10, Math.parseInt(opts2.arguments[0])); |
| 30 Expect.equals("options_test", opts2.arguments[1]); | 31 Expect.equals("options_test", opts2.arguments[1]); |
| 31 Expect.equals(20, Math.parseInt(opts2.arguments[2])); | 32 Expect.equals(20, Math.parseInt(opts2.arguments[2])); |
| 32 } | 33 } |
| OLD | NEW |