blob: a918aef133276720f3be0d12e340493a833abf57 [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 'agnostic/test_all.dart' as agnostic;
import 'legacy/test_all.dart' as legacy;
void main() {
defineReflectiveSuite(() {
agnostic.main();
legacy.main();
}, name: 'refactoring');
}