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

Unified Diff: pkg/analysis_server/test/edit/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/edit/test_all.dart
diff --git a/pkg/analysis_server/test/edit/test_all.dart b/pkg/analysis_server/test/edit/test_all.dart
index ef861d8ce4e5ddd6bc12087a813356072cda5d0b..914d34d8e0ccc61f4dee8d85c3c3f43e809bb121 100644
--- a/pkg/analysis_server/test/edit/test_all.dart
+++ b/pkg/analysis_server/test/edit/test_all.dart
@@ -4,7 +4,7 @@
library test.edit.all;
-import 'package:unittest/unittest.dart';
+import 'package:test_reflective_loader/test_reflective_loader.dart';
import '../utils.dart';
import 'assists_test.dart' as assists_test;
@@ -19,12 +19,12 @@ import 'sort_members_test.dart' as sort_members_test;
*/
main() {
initializeTestEnvironment();
- group('edit', () {
+ defineReflectiveSuite(() {
assists_test.main();
fixes_test.main();
format_test.main();
organize_directives_test.main();
refactoring_test.main();
sort_members_test.main();
- });
+ }, name: 'edit');
}

Powered by Google App Engine
This is Rietveld 408576698