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

Unified Diff: pkg/analysis_server/test/integration/edit/test_all.dart

Issue 2700563003: Add tests for edit.sortMembers and edit.organizeDirectives. (Closed)
Patch Set: Created 3 years, 10 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/integration/edit/test_all.dart
diff --git a/pkg/analysis_server/test/integration/edit/test_all.dart b/pkg/analysis_server/test/integration/edit/test_all.dart
index f6412dfb99bbf029e1122fbf19e7b8543f8545a3..68b97b12de0d8e0d8cc2e3a3a570c0cda7a46c8d 100644
--- a/pkg/analysis_server/test/integration/edit/test_all.dart
+++ b/pkg/analysis_server/test/integration/edit/test_all.dart
@@ -5,9 +5,13 @@
import 'package:test_reflective_loader/test_reflective_loader.dart';
import 'format_test.dart' as format_test;
+import 'organize_directives_test.dart' as organize_directives_test;
+import 'sort_members_test.dart' as sort_members_test;
main() {
defineReflectiveSuite(() {
format_test.main();
+ organize_directives_test.main();
+ sort_members_test.main();
}, name: 'edit');
}

Powered by Google App Engine
This is Rietveld 408576698