Files
sdk/pkg/analysis_server/test/integration/test_all.dart
T
Parker Lougheed a409a1c07d [analyzer/linter] Use shared enumeration for lint names
This helps to avoid any accidental mispellings, enables find usages, and potentially makes future renames easier.

The primary goal is to make future work in https://github.com/dart-lang/sdk/issues/56835 easier.

Change-Id: I684630a4d6cb145031de0dabc221f247246ea00c
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/388042
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Auto-Submit: Parker Lougheed <parlough@gmail.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
Reviewed-by: Phil Quitslund <pquitslund@google.com>
2024-10-03 21:36:49 +00:00

34 lines
1.0 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.
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'analysis/test_all.dart' as analysis;
import 'completion/test_all.dart' as completion;
import 'coverage_test.dart' as coverage_test;
import 'diagnostic/test_all.dart' as diagnostic;
import 'dtd/test_all.dart' as dtd;
import 'edit/test_all.dart' as edit;
import 'execution/test_all.dart' as execution;
import 'lsp/test_all.dart' as lsp;
import 'lsp_server/test_all.dart' as lsp_server;
import 'search/test_all.dart' as search;
import 'server/test_all.dart' as server;
void main() {
defineReflectiveSuite(() {
analysis.main();
completion.main();
coverage_test.main();
diagnostic.main();
dtd.main();
edit.main();
execution.main();
lsp.main();
lsp_server.main();
search.main();
server.main();
}, name: 'analysis_server_integration');
}