Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Unified Diff: pkg/analysis_server/test/analysis/test_all.dart

Issue 2394683006: Switch analysis_server to use 'package:test'. (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: pkg/analysis_server/test/analysis/test_all.dart
diff --git a/pkg/analysis_server/test/analysis/test_all.dart b/pkg/analysis_server/test/analysis/test_all.dart
index a0cd6d31413723088232db6b18a08238875fd1ac..c8457d118a4584fa29c6aca116707d4d450bf106 100644
--- a/pkg/analysis_server/test/analysis/test_all.dart
+++ b/pkg/analysis_server/test/analysis/test_all.dart
@@ -3,7 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
library test.analysis;
-import 'package:unittest/unittest.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../utils.dart';
import 'get_errors_test.dart' as get_errors_test;
@@ -30,7 +30,7 @@ import 'update_content_test.dart' as update_content_test;
*/
main() {
initializeTestEnvironment();
- group('analysis', () {
+ defineReflectiveSuite(() {
get_errors_test.main();
get_hover_test.main();
get_navigation_test.main();
@@ -47,5 +47,5 @@ main() {
notification_overrides_test.main();
set_priority_files_test.main();
update_content_test.main();
- });
+ }, name: 'analysis');
}

Powered by Google App Engine
This is Rietveld 408576698