Files
sdk/pkg/analyzer_plugin/test/utilities/test_all.dart
T
Brian Wilkerson 7494f58032 Enable always_declare_return_types in analyzer_plugin
Change-Id: I972f0e2569de64397828d887b1fb37fcf57e006f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/133408
Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
Commit-Queue: Brian Wilkerson <brianwilkerson@google.com>
2020-01-26 23:13:34 +00:00

22 lines
777 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 'analyzer_converter_test.dart' as analyzer_converter_test;
import 'completion/test_all.dart' as completion;
import 'navigation_test.dart' as navigation_test;
import 'range_factory_test.dart' as range_factory_test;
import 'subscriptions/test_all.dart' as subscriptions;
void main() {
defineReflectiveSuite(() {
analyzer_converter_test.main();
completion.main();
navigation_test.main();
range_factory_test.main();
subscriptions.main();
}, name: 'utilities');
}