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

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

Issue 2691763002: Add integration tests for the execution domain. (Closed)
Patch Set: call -> request in dartdocs 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/execution/test_all.dart
diff --git a/pkg/analysis_server/test/integration/execution/test_all.dart b/pkg/analysis_server/test/integration/execution/test_all.dart
index 8ccc11fa92501ed2d5742650099d830b5e7856ff..f24942d07c881b9a01e220c149444dff871e34c7 100644
--- a/pkg/analysis_server/test/integration/execution/test_all.dart
+++ b/pkg/analysis_server/test/integration/execution/test_all.dart
@@ -4,10 +4,14 @@
import 'package:test_reflective_loader/test_reflective_loader.dart';
+import 'create_context_test.dart' as create_context_test;
+import 'delete_context_test.dart' as delete_context_test;
import 'map_uri_test.dart' as map_uri_test;
main() {
defineReflectiveSuite(() {
+ create_context_test.main();
+ delete_context_test.main();
map_uri_test.main();
}, name: 'execution');
}

Powered by Google App Engine
This is Rietveld 408576698