| Index: tests/standalone/io/process_check_arguments_script.dart
|
| diff --git a/tests/standalone/io/process_check_arguments_script.dart b/tests/standalone/io/process_check_arguments_script.dart
|
| index 6e9c086efc3426c0fcf8ce0cdf25d61f24d30769..8e8668c5a901f35720c657f52b81b2b106eb8c0f 100644
|
| --- a/tests/standalone/io/process_check_arguments_script.dart
|
| +++ b/tests/standalone/io/process_check_arguments_script.dart
|
| @@ -6,6 +6,20 @@
|
| // one dart process to another using the dart:io process interface.
|
| import "dart:math";
|
|
|
| +class Expect {
|
| + static void isTrue(x) {
|
| + if (!x) {
|
| + throw new Error("Not true");
|
| + }
|
| + }
|
| +
|
| + static void equals(x, y) {
|
| + if (x != y) {
|
| + throw new Error("Not equal");
|
| + }
|
| + }
|
| +}
|
| +
|
| main() {
|
| var options = new Options();
|
| Expect.isTrue(options.script.endsWith('process_check_arguments_script.dart'));
|
|
|