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

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

Issue 1232683003: Issue 23640. Implement 'analysis.getNavigation' request. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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/analysis/test_all.dart
diff --git a/pkg/analysis_server/test/analysis/test_all.dart b/pkg/analysis_server/test/analysis/test_all.dart
index e9867c27ccdd4fe887fde01eb77e5efc43b288cb..b28a687eb62672902953c90d8387eb993101e337 100644
--- a/pkg/analysis_server/test/analysis/test_all.dart
+++ b/pkg/analysis_server/test/analysis/test_all.dart
@@ -7,6 +7,7 @@ import 'package:unittest/unittest.dart';
import 'get_errors_test.dart' as get_errors_test;
import 'get_hover_test.dart' as get_hover_test;
+import 'get_navigation_test.dart' as get_navigation_test;
Paul Berry 2015/07/13 14:37:39 I don't see this file. Did you forget to add it?
import 'notification_errors_test.dart' as notification_errors_test;
import 'notification_highlights_test.dart' as notification_highlights_test;
import 'notification_navigation_test.dart' as notification_navigation_test;
@@ -23,6 +24,7 @@ main() {
group('search', () {
get_errors_test.main();
get_hover_test.main();
+ get_navigation_test.main();
notification_errors_test.main();
notification_highlights_test.main();
notification_navigation_test.main();

Powered by Google App Engine
This is Rietveld 408576698