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

Unified Diff: pkg/analyzer_plugin/test/plugin/plugin_test.dart

Issue 2908523002: Add a getNavigation request for plugins (Closed)
Patch Set: Created 3 years, 7 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/analyzer_plugin/test/plugin/plugin_test.dart
diff --git a/pkg/analyzer_plugin/test/plugin/plugin_test.dart b/pkg/analyzer_plugin/test/plugin/plugin_test.dart
index a9dd530de7f4356cab728ba5e5f33746a5e3a892..193e3cff337987e874a788a89fbe8f14a777c4ee 100644
--- a/pkg/analyzer_plugin/test/plugin/plugin_test.dart
+++ b/pkg/analyzer_plugin/test/plugin/plugin_test.dart
@@ -93,6 +93,12 @@ class ServerPluginTest {
expect(plugin.contextRootContaining(filePath2), isNull);
}
+ test_handleAnalysisGetNavigation() async {
+ var result = await plugin
+ .handleAnalysisGetNavigation(new AnalysisGetNavigationParams('', 1, 2));
+ expect(result, isNotNull);
+ }
+
test_handleAnalysisHandleWatchEvents() async {
var result = await plugin.handleAnalysisHandleWatchEvents(
new AnalysisHandleWatchEventsParams([]));
« no previous file with comments | « pkg/analyzer_plugin/test/integration/support/protocol_matchers.dart ('k') | pkg/analyzer_plugin/tool/spec/plugin_spec.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698