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

Unified Diff: pkg/analysis_server/test/services/correction/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/services/correction/test_all.dart
diff --git a/pkg/analysis_server/test/services/correction/test_all.dart b/pkg/analysis_server/test/services/correction/test_all.dart
index f00f310233fa4d4e1903ce84ca7d7cdf71b52b64..e7c1267712ded2664f1ff401bb26fc6d40587190 100644
--- a/pkg/analysis_server/test/services/correction/test_all.dart
+++ b/pkg/analysis_server/test/services/correction/test_all.dart
@@ -4,7 +4,7 @@
library test.services.correction;
-import 'package:unittest/unittest.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../../utils.dart';
import 'assist_test.dart' as assist_test;
@@ -22,7 +22,7 @@ import 'util_test.dart' as util_test;
/// Utility for manually running all tests.
main() {
initializeTestEnvironment();
- group('correction', () {
+ defineReflectiveSuite(() {
assist_test.main();
change_test.main();
fix_test.main();
@@ -34,5 +34,5 @@ main() {
status_test.main();
strings_test.main();
util_test.main();
- });
+ }, name: 'correction');
}

Powered by Google App Engine
This is Rietveld 408576698