blob: bee64d34e1f516ae4dc2b9bd408f436a010e0b49 [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 '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;
main() {
// Redirect output.
outSink = new MockIOSink();
engine_test.main();
formatter_test.main();
integration_test.main();
rule_test.main();
}