blob: 0ba933e18bfd6300d7bab57b9a0c6e796a6703d1 [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.
library analyzer.test.src.dart.analysis.test_all;
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'byte_store_test.dart' as byte_store;
import 'driver_test.dart' as driver;
import 'file_state_test.dart' as file_state;
import 'referenced_names_test.dart' as referenced_names;
/// Utility for manually running all tests.
main() {
defineReflectiveSuite(() {
byte_store.main();
driver.main();
file_state.main();
referenced_names.main();
}, name: 'analysis');
}