62656833d4
* migrates error filtering from a predicate to a process that can customize severities. * moves filtering/processing from the `dart` task into the `getErrors` request and the errors notification. See: https://github.com/dart-lang/sdk/issues/24452 (Pending a thumbs-up, support for CLI to follow.) R=brianwilkerson@google.com Review URL: https://codereview.chromium.org/1517723002 .
31 lines
1.1 KiB
Dart
31 lines
1.1 KiB
Dart
// Copyright (c) 2014, 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.source.test_all;
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import '../utils.dart';
|
|
import 'analysis_options_provider_test.dart' as analysis_options_provider_test;
|
|
import 'embedder_test.dart' as embedder_test;
|
|
import 'error_processor_test.dart' as error_processor_test;
|
|
import 'package_map_provider_test.dart' as package_map_provider_test;
|
|
import 'package_map_resolver_test.dart' as package_map_resolver_test;
|
|
import 'path_filter_test.dart' as path_filter_test;
|
|
import 'sdk_ext_test.dart' as sdk_ext_test;
|
|
|
|
/// Utility for manually running all tests.
|
|
main() {
|
|
initializeTestEnvironment();
|
|
group('source', () {
|
|
analysis_options_provider_test.main();
|
|
embedder_test.main();
|
|
error_processor_test.main();
|
|
package_map_provider_test.main();
|
|
package_map_resolver_test.main();
|
|
path_filter_test.main();
|
|
sdk_ext_test.main();
|
|
});
|
|
}
|