blob: 5d785532e33df1294d406f938612359ebe0fad85 [file] [log] [blame]
// Copyright (c) 2021, 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 'ast_test.dart' as ast;
import 'range_factory_test.dart' as range_factory;
import 'string_test.dart' as string;
void main() {
defineReflectiveSuite(() {
ast.main();
range_factory.main();
string.main();
});
}