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

Unified Diff: sdk/lib/_internal/dartdoc/test/dartdoc_search_test.dart

Issue 140303009: Remove dartdoc. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 10 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
« no previous file with comments | « sdk/lib/_internal/dartdoc/static/styles.css ('k') | sdk/lib/_internal/dartdoc/test/dartdoc_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/dartdoc/test/dartdoc_search_test.dart
===================================================================
--- sdk/lib/_internal/dartdoc/test/dartdoc_search_test.dart (revision 32349)
+++ sdk/lib/_internal/dartdoc/test/dartdoc_search_test.dart (working copy)
@@ -1,53 +0,0 @@
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library dartdoc_search_test;
-
-// TODO(rnystrom): Use "package:" URL (#4968).
-import '../../../../../pkg/expect/lib/expect.dart';
-import '../lib/src/dartdoc/nav.dart';
-import '../lib/src/client/search.dart';
-
-const String URL = 'dummy-url';
-
-testTopLevelVsMembers() {
- var search = new SearchText('timer');
- var match = obtainMatch(search, 'timer');
- // Matching a top-level field 'timer';
- var topLevelResult = new Result(match, FIELD, URL);
- // Matching a member field 'timer' in 'Foo';
- var memberResult = new Result(match, FIELD, URL, type: 'Foo');
- Expect.equals(-1, resultComparator(topLevelResult, memberResult),
- "Top level fields should be preferred to member fields");
-}
-
-testTopLevelFullVsPrefix() {
- var search = new SearchText('cancel');
- var fullMatch = obtainMatch(search, 'cancel');
- var prefixMatch = obtainMatch(search, 'cancelable');
- // Matching a top-level method 'cancel';
- var fullResult = new Result(fullMatch, METHOD, URL);
- // Matching a top-level method 'cancelable';
- var prefixResult = new Result(prefixMatch, METHOD, URL);
- Expect.equals(-1, resultComparator(fullResult, prefixResult),
- "Full matches should be preferred to prefix matches");
-}
-
-testMemberFullVsPrefix() {
- var search = new SearchText('cancel');
- var fullMatch = obtainMatch(search, 'cancel');
- var prefixMatch = obtainMatch(search, 'cancelable');
- // Matching a member method 'cancel' in 'Isolate';
- var fullResult = new Result(fullMatch, METHOD, URL, type: 'Isolate');
- // Matching a member field 'cancelable' in 'Event';
- var prefixResult = new Result(prefixMatch, FIELD, URL, type: 'Event');
- Expect.equals(-1, resultComparator(fullResult, prefixResult),
- "Full matches should be preferred to prefix matches");
-}
-
-void main() {
- testTopLevelVsMembers();
- testTopLevelFullVsPrefix();
- testMemberFullVsPrefix();
-}
« no previous file with comments | « sdk/lib/_internal/dartdoc/static/styles.css ('k') | sdk/lib/_internal/dartdoc/test/dartdoc_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698