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

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

Issue 2965243002: Add unit tests for copy/paste support (Closed)
Patch Set: Created 3 years, 5 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/src/test_all.dart
diff --git a/pkg/analysis_server/test/src/test_all.dart b/pkg/analysis_server/test/src/test_all.dart
index 3fe25015e4fd27402cbaed406859c5d4fd98b3fd..70858b061d08cedadacbbf88c91423392741942f 100644
--- a/pkg/analysis_server/test/src/test_all.dart
+++ b/pkg/analysis_server/test/src/test_all.dart
@@ -4,15 +4,21 @@
import 'package:test_reflective_loader/test_reflective_loader.dart';
+import 'computer/test_all.dart' as computer_all;
import 'domain_abstract_test.dart' as domain_abstract_test;
import 'plugin/test_all.dart' as plugin_all;
+import 'utilities/test_all.dart' as utilities_all;
+import 'watch_manager_test.dart' as watch_manager_test;
/**
* Utility for manually running all tests.
*/
main() {
defineReflectiveSuite(() {
+ computer_all.main();
domain_abstract_test.main();
plugin_all.main();
+ utilities_all.main();
+ watch_manager_test.main();
}, name: 'src');
}
« no previous file with comments | « pkg/analysis_server/test/src/computer/test_all.dart ('k') | pkg/analysis_server/test/src/utilities/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698