blob: 974bbc9f01f55350fdfce35ccfb98596c75307e6 [file] [log] [blame]
// Copyright (c) 2022, 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 'class_test.dart' as class_;
import 'constructor_test.dart' as constructor_;
import 'enum_test.dart' as enum_;
import 'library_test.dart' as library_;
import 'pattern_variable_test.dart' as pattern_variable;
import 'record_type_test.dart' as record_type;
/// Tests suggestions produced for various kinds of declarations.
void main() {
defineReflectiveSuite(() {
class_.main();
constructor_.main();
enum_.main();
library_.main();
pattern_variable.main();
record_type.main();
});
}