blob: 47596f211c8cfa1e12e824c15f5e19902156470c [file] [log] [blame]
// Copyright (c) 2016, 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 'config_test.dart' as config;
import 'io_test.dart' as io;
import 'linter/test_all.dart' as linter;
import 'project_test.dart' as project;
import 'pub_test.dart' as pub;
main() {
defineReflectiveSuite(() {
config.main();
io.main();
linter.main();
project.main();
pub.main();
}, name: 'lint');
}