3019a8873a
Change-Id: Ia25b1f93d5f2f3942f0c76d74556228a41410182 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/97352 Reviewed-by: Konstantin Shcheglov <scheglov@google.com> Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
31 lines
856 B
Dart
31 lines
856 B
Dart
// Copyright (c) 2017, 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 'package:test_reflective_loader/test_reflective_loader.dart';
|
|
|
|
import '../tool/spec/check_all_test.dart' as check_spec;
|
|
import 'plugin/test_all.dart' as plugin;
|
|
import 'src/test_all.dart' as src;
|
|
import 'utilities/test_all.dart' as utilities;
|
|
import 'verify_tests_test.dart' as verify_tests;
|
|
|
|
main() {
|
|
defineReflectiveSuite(() {
|
|
plugin.main();
|
|
src.main();
|
|
utilities.main();
|
|
verify_tests.main();
|
|
defineReflectiveSuite(() {
|
|
defineReflectiveTests(SpecTest);
|
|
}, name: 'spec');
|
|
}, name: 'analyzer_plugin');
|
|
}
|
|
|
|
@reflectiveTest
|
|
class SpecTest {
|
|
test_specHasBeenGenerated() {
|
|
check_spec.main();
|
|
}
|
|
}
|