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