Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Side by Side Diff: tools/testing/dart/package_testing_support.dart

Issue 2693893002: Add a new kind of suite to ease test.dart integration. (Closed)
Patch Set: Fix Linux and Windows paths. Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pkg/testing/lib/src/test_dart.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE.md file.
4
5 library package_testing_support;
6
7 import 'dart:convert' show
8 JSON;
9
10 import 'test_configurations.dart' show
11 testConfigurations;
12
13 import 'test_options.dart' show
14 TestOptionsParser;
15
16 import 'test_suite.dart' show
17 TestUtils;
18
19 main(List<String> arguments) {
20 TestUtils.setDartDirUri(Uri.base);
21 List<Map> configurations = <Map>[];
22 for (String argument in arguments) {
23 configurations.addAll(new TestOptionsParser().parse(argument.split(" ")));
24 }
25 testConfigurations(configurations);
26 }
OLDNEW
« no previous file with comments | « pkg/testing/lib/src/test_dart.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698