-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathprefixes_test.dart
53 lines (45 loc) · 1.31 KB
/
prefixes_test.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// 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(PrefixesTest);
});
}
@reflectiveTest
class PrefixesTest extends DartdocTestBase {
@override
String get libraryName => 'prefixes';
void test_referenced() async {
var library = await bootPackageWithLibrary(
'''
import 'dart:async' as async;
/// Text [async].
int x = 0;
''',
additionalArguments: ['--link-to-remote'],
);
var x = library.properties.named('x');
expect(
x.documentationAsHtml,
'<p>Text <a href="$dartAsyncUrlPrefix/">async</a>.</p>',
);
}
void test_referenced_wildcard() async {
var library = await bootPackageWithLibrary(
'''
import 'dart:async' as _;
/// Text [_].
int x = 0;
''',
additionalArguments: ['--link-to-remote'],
);
var x = library.properties.named('x');
// There is no link, but also no wrong link or crash.
expect(x.documentationAsHtml, '<p>Text <code>_</code>.</p>');
}
}