3737Tests are specified using the top-level [ ` test() ` ] function.
3838Test asserts can be made using [ ` expect ` from ` package:matcher ` ] [ expect ]
3939
40- [ `test()` ] : https://pub.dev/documentation/test_core /latest/test_core.scaffolding /test.html
40+ [ `test()` ] : https://pub.dev/documentation/test /latest/test /test.html
4141
4242[ expect ] : https://pub.dev/documentation/matcher/latest/expect/expect.html
4343
@@ -60,7 +60,7 @@ void main() {
6060Tests can be grouped together using the [ ` group() ` ] function. Each group's
6161description is added to the beginning of its test's descriptions.
6262
63- [ `group()` ] : https://pub.dev/documentation/test_core /latest/test_core.scaffolding /group.html
63+ [ `group()` ] : https://pub.dev/documentation/test /latest/test /group.html
6464
6565``` dart
6666import 'package:test/test.dart';
@@ -116,9 +116,9 @@ void main() {
116116}
117117```
118118
119- [ `setUp()` ] : https://pub.dev/documentation/test_core /latest/test_core.scaffolding /setUp.html
119+ [ `setUp()` ] : https://pub.dev/documentation/test /latest/test /setUp.html
120120
121- [ `tearDown()` ] : https://pub.dev/documentation/test_core /latest/test_core.scaffolding /tearDown.html
121+ [ `tearDown()` ] : https://pub.dev/documentation/test /latest/test /tearDown.html
122122
123123## Running Tests
124124
@@ -317,7 +317,7 @@ void main() {
317317}
318318```
319319
320- [ `@TestOn` ] : https://pub.dev/documentation/test_api /latest/test_api.scaffolding /TestOn-class.html
320+ [ `@TestOn` ] : https://pub.dev/documentation/test /latest/test /TestOn-class.html
321321
322322The string you pass to ` @TestOn ` is what's called a "platform selector", and it
323323specifies exactly which platforms a test can run on. It can be as simple as the
@@ -776,9 +776,9 @@ The only difference is where the code from the isolate comes from:
776776` spawnHybridUri()` takes a URL. They both return a [`StreamChannel`] that
777777communicates with the hybrid isolate. For example :
778778
779- [`spawnHybridCode()`] : https://pub.dev/documentation/test_api /latest/test_api.scaffolding /spawnHybridCode.html
779+ [`spawnHybridCode()`] : https://pub.dev/documentation/test /latest/test /spawnHybridCode.html
780780
781- [`spawnHybridUri()`] : https://pub.dev/documentation/test_api /latest/test_api.scaffolding /spawnHybridUri.html
781+ [`spawnHybridUri()`] : https://pub.dev/documentation/test /latest/test /spawnHybridUri.html
782782
783783[dart:isolate] : https://api.dart.dev/stable/dart-isolate/dart-isolate-library.html
784784
0 commit comments