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

Unified Diff: pkg/analysis_server/test/analysis/reanalyze_test.dart

Issue 2843093002: Send re-analyze requests to plugins (Closed)
Patch Set: Created 3 years, 8 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/analysis/reanalyze_test.dart
diff --git a/pkg/analysis_server/test/analysis/reanalyze_test.dart b/pkg/analysis_server/test/analysis/reanalyze_test.dart
index a6cbb89cff08eda065122582cd66ef9aff01dc66..d644abc063fe3f6e1456c3059a6c79af5d60eb29 100644
--- a/pkg/analysis_server/test/analysis/reanalyze_test.dart
+++ b/pkg/analysis_server/test/analysis/reanalyze_test.dart
@@ -72,4 +72,13 @@ class ReanalyzeTest extends AbstractAnalysisTest {
expect(errors, hasLength(1));
}
}
+
+ test_sentToPlugins() async {
+ createProject();
+ await waitForTasksFinished();
+ Request request = new Request("0", ANALYSIS_REANALYZE);
+ handleSuccessfulRequest(request);
+ // verify
+ expect(pluginManager.broadcastedRequest, isNotNull);
+ }
}
« no previous file with comments | « pkg/analysis_server/lib/src/plugin/request_converter.dart ('k') | pkg/analysis_server/test/analysis_abstract.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698