00a45e425a
Change-Id: I2236c728741837588394f896b37f181fc907d335 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/190726 Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Reviewed-by: Devon Carew <devoncarew@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
28 lines
968 B
Dart
28 lines
968 B
Dart
// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
|
|
// 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.
|
|
|
|
import 'analysis_options_test.dart' as analysis_options;
|
|
import 'driver_test.dart' as driver;
|
|
import 'embedder_test.dart' as embedder;
|
|
import 'errors_reported_once_test.dart' as errors_reported_once;
|
|
import 'errors_upgrade_fails_cli_test.dart' as errors_upgrade_fails_cli;
|
|
import 'options_test.dart' as options;
|
|
import 'package_prefix_test.dart' as package_prefix;
|
|
import 'perf_report_test.dart' as perf_report;
|
|
import 'reporter_test.dart' as reporter;
|
|
import 'strong_mode_test.dart' as strong_mode;
|
|
|
|
void main() {
|
|
analysis_options.main();
|
|
driver.main();
|
|
embedder.main();
|
|
errors_reported_once.main();
|
|
errors_upgrade_fails_cli.main();
|
|
options.main();
|
|
package_prefix.main();
|
|
perf_report.main();
|
|
reporter.main();
|
|
strong_mode.main();
|
|
}
|