| OLD | NEW |
| 1 // Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2017, 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.md file. | 3 // BSD-style license that can be found in the LICENSE.md file. |
| 4 | 4 |
| 5 library package_testing_support; | 5 import 'configuration.dart'; |
| 6 | |
| 7 import 'options.dart'; | 6 import 'options.dart'; |
| 8 import 'test_configurations.dart'; | 7 import 'test_configurations.dart'; |
| 9 import 'test_suite.dart'; | 8 import 'test_suite.dart'; |
| 10 | 9 |
| 11 void main(List<String> arguments) { | 10 void main(List<String> arguments) { |
| 12 TestUtils.setDartDirUri(Uri.base); | 11 TestUtils.setDartDirUri(Uri.base); |
| 13 var configurations = <Map<String, dynamic>>[]; | 12 var configurations = <Configuration>[]; |
| 14 for (var argument in arguments) { | 13 for (var argument in arguments) { |
| 15 configurations.addAll(new OptionsParser().parse(argument.split(" "))); | 14 configurations.addAll(new OptionsParser().parse(argument.split(" "))); |
| 16 } | 15 } |
| 17 testConfigurations(configurations); | 16 testConfigurations(configurations); |
| 18 } | 17 } |
| OLD | NEW |