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

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

Issue 392693002: Initial implementation for 'search.findElementReferences'. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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/test_all.dart
diff --git a/pkg/analysis_server/test/test_all.dart b/pkg/analysis_server/test/test_all.dart
index daaac128ab2d124697a87e19e13a85988e7bec67..7232e28d71a40aaedde584704bd1db6a42566c8c 100644
--- a/pkg/analysis_server/test/test_all.dart
+++ b/pkg/analysis_server/test/test_all.dart
@@ -17,12 +17,12 @@ import 'context_directory_manager_test.dart' as context_directory_manager_test;
import 'domain_analysis_test.dart' as domain_analysis_test;
import 'domain_completion_test.dart' as domain_completion_test;
import 'domain_edit_test.dart' as domain_edit_test;
-import 'domain_search_test.dart' as domain_search_test;
import 'domain_server_test.dart' as domain_server_test;
import 'operation/test_all.dart' as operation_test_all;
import 'package_map_provider_test.dart' as package_map_provider_test;
import 'package_uri_resolver_test.dart' as package_uri_resolver_test;
import 'protocol_test.dart' as protocol_test;
+import 'search/test_all.dart' as search_all;
import 'socket_server_test.dart' as socket_server_test;
/**
@@ -44,12 +44,12 @@ main() {
domain_analysis_test.main();
domain_completion_test.main();
domain_edit_test.main();
- domain_search_test.main();
domain_server_test.main();
operation_test_all.main();
package_map_provider_test.main();
package_uri_resolver_test.main();
protocol_test.main();
+ search_all.main();
socket_server_test.main();
});
}

Powered by Google App Engine
This is Rietveld 408576698