blob: dc4bd6b58b8f5c95ee8652d8883497204a7a9cb1 [file] [log] [blame]
// Copyright (c) 2019, 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.
// @dart = 2.9
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'available_suggestion_sets_test.dart' as available_suggestion_sets;
import 'get_suggestion_details_test.dart' as get_suggestion_details;
import 'get_suggestions_available_test.dart' as get_suggestions_available;
void main() {
defineReflectiveSuite(() {
available_suggestion_sets.main();
get_suggestion_details.main();
get_suggestions_available.main();
});
}