blob: d503cd9583071701b1a591e210a791d7c35b6fc0 [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.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'dartfix_listener_test.dart' as dartfix_listener;
import 'non_nullable_fix_test.dart' as non_nullable_fix;
void main() {
defineReflectiveSuite(() {
dartfix_listener.main();
non_nullable_fix.main();
}, name: 'fix');
}