-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests supporting the wildcard feature (#3835)
- Loading branch information
Showing
3 changed files
with
141 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
// Copyright (c) 2024, 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. | ||
|
||
import 'package:test/test.dart'; | ||
import 'package:test_reflective_loader/test_reflective_loader.dart'; | ||
|
||
import 'dartdoc_test_base.dart'; | ||
import 'src/utils.dart'; | ||
|
||
void main() { | ||
defineReflectiveSuite(() { | ||
defineReflectiveTests(TypeParameterTest); | ||
}); | ||
} | ||
|
||
@reflectiveTest | ||
class TypeParameterTest extends DartdocTestBase { | ||
@override | ||
String get libraryName => 'type_parameters'; | ||
|
||
void test_referenced() async { | ||
var library = await bootPackageWithLibrary(''' | ||
/// Text [T]. | ||
void f<T>(int p) {} | ||
typedef T = int; | ||
'''); | ||
var f = library.functions.named('f'); | ||
// There is no link, but also no wrong link or crash. | ||
expect(f.documentationAsHtml, '<p>Text <code>T</code>.</p>'); | ||
} | ||
|
||
void test_referenced_wildcard() async { | ||
var library = await bootPackageWithLibrary(''' | ||
/// Text [_]. | ||
void f<_>() {} | ||
'''); | ||
var f = library.functions.named('f'); | ||
// There is no link, but also no wrong link or crash. | ||
expect(f.documentationAsHtml, '<p>Text <code>_</code>.</p>'); | ||
} | ||
|
||
void test_referenced_wildcardInParent() async { | ||
var library = await bootPackageWithLibrary(''' | ||
class C<_> { | ||
/// Text [_]. | ||
void m() {} | ||
} | ||
'''); | ||
var m = library.classes.named('C').instanceMethods.named('m'); | ||
// There is no link, but also no wrong link or crash. | ||
expect(m.documentationAsHtml, '<p>Text <code>_</code>.</p>'); | ||
} | ||
} |