blob: c08bf98f33b140f04bc687ac4385c0f5a0485911 [file] [log] [blame]
// Copyright (c) 2015, 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:analyzer/src/lint/io.dart';
import 'ast_test.dart' as ast_test;
import 'engine_test.dart' as engine_test;
import 'formatter_test.dart' as formatter_test;
import 'integration_test.dart' as integration_test;
import 'mocks.dart';
import 'rule_test.dart' as rule_test;
import 'utils_test.dart' as utils_test;
import 'validate_format_test.dart' as validate_format;
import 'validate_headers_test.dart' as validate_headers;
import 'version_test.dart' as version_test;
main() {
// Redirect output.
outSink = MockIOSink();
ast_test.main();
engine_test.main();
formatter_test.main();
integration_test.main();
rule_test.main();
utils_test.main();
validate_format.main();
validate_headers.main();
version_test.main();
}