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

Unified Diff: pkg/analysis_server/test/search/search_domain_test.dart

Issue 397883004: Implementation of the 'search.findMemberDeclarations' API. (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/search/search_domain_test.dart
diff --git a/pkg/analysis_server/test/search/search_domain_test.dart b/pkg/analysis_server/test/search/search_domain_test.dart
index bf46e7a06badc11d5ca1a9b79183bf9a89802c0f..d97ccd7adc15ad6d76cf0a96034c6277952bbfa2 100644
--- a/pkg/analysis_server/test/search/search_domain_test.dart
+++ b/pkg/analysis_server/test/search/search_domain_test.dart
@@ -36,14 +36,6 @@ main() {
});
group('SearchDomainHandler', () {
- test('findMemberDeclarations', () {
- var request = new Request('0', SEARCH_FIND_MEMBER_DECLARATIONS);
- request.setParameter(NAME, null);
- var response = handler.handleRequest(request);
- // TODO(brianwilkerson) implement
- //expect(response, isNull);
- });
-
test('findMemberReferences', () {
var request = new Request('0', SEARCH_FIND_MEMBER_REFERENCES);
request.setParameter(NAME, null);
@@ -51,13 +43,5 @@ main() {
// TODO(brianwilkerson) implement
//expect(response, isNull);
});
-
- test('findTopLevelDeclarations', () {
- var request = new Request('0', SEARCH_FIND_TOP_LEVEL_DECLARATIONS);
- request.setParameter(PATTERN, null);
- var response = handler.handleRequest(request);
- // TODO(brianwilkerson) implement
- //expect(response, isNull);
- });
});
}
« no previous file with comments | « pkg/analysis_server/test/search/member_declarations_test.dart ('k') | pkg/analysis_server/test/search/test_all.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698