Chromium Code Reviews| Index: tests/standalone/io/options_test.dart |
| diff --git a/tests/standalone/src/io/OptionsTest.dart b/tests/standalone/io/options_test.dart |
| similarity index 77% |
| rename from tests/standalone/src/io/OptionsTest.dart |
| rename to tests/standalone/io/options_test.dart |
| index 2c5b8a262b3e97ac498201fc04760cbe7757d577..084d38c4df0e9e9f369282e8926abb2d1ca62ac1 100644 |
| --- a/tests/standalone/src/io/OptionsTest.dart |
| +++ b/tests/standalone/io/options_test.dart |
| @@ -2,7 +2,7 @@ |
| // 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/io/OptionsTest.dart 10 OptionsTest 20 |
| +// DartOptions=tests/standalone/io/options_test.dart 10 options_test 20 |
|
Emily Fortuna
2012/04/30 16:56:13
Minor, since this was already there, but I'm not s
Siggi Cherem (dart-lang)
2012/04/30 17:09:59
This is a way to specify in test.dart that you wan
|
| main() { |
| var opts = new Options(); |
| @@ -10,16 +10,16 @@ main() { |
| // 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("options_test", opts.arguments[1]); |
| Expect.equals(20, Math.parseInt(opts.arguments[2])); |
| Expect.isTrue(opts.script.replaceAll('\\', '/'). |
| - endsWith('tests/standalone/src/io/OptionsTest.dart')); |
| + endsWith('tests/standalone/io/options_test.dart')); |
| // 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("options_test", opts.arguments[1]); |
| Expect.equals(20, Math.parseInt(opts.arguments[2])); |
| Expect.equals("Fourth", opts.arguments[3]); |
| @@ -27,6 +27,6 @@ main() { |
| 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("options_test", opts2.arguments[1]); |
| Expect.equals(20, Math.parseInt(opts2.arguments[2])); |
| } |