File tree
Expand file treeCollapse file tree5 files changed
+13
-13
lines changed Expand file treeCollapse file tree5 files changed
+13
-13
lines changed Original file line number | Diff line number | Diff line change |
---|
@@ -454,4 +454,4 @@ you must set up a redirection.
|
454 | 454 | .. _`feature toggles`: https://en.wikipedia.org/wiki/Feature_toggle
|
455 | 455 | .. _`smoke testing`: https://en.wikipedia.org/wiki/Smoke_testing_(software)
|
456 | 456 | .. _`Webpack`: https://webpack.js.org/
|
457 |
| -.. _`PHPUnit data providers`: https://phpunit.readthedocs.io/en/9.5/writing-tests-for-phpunit.html#data-providers |
| 457 | +.. _`PHPUnit data providers`: https://docs.phpunit.de/en/9.5/writing-tests-for-phpunit.html#data-providers |
Original file line number | Diff line number | Diff line change |
---|
@@ -1032,13 +1032,13 @@ not find the SUT:
|
1032 | 1032 | </listeners>
|
1033 | 1033 |
|
1034 | 1034 | .. _`PHPUnit`: https://phpunit.de
|
1035 |
| -.. _`PHPUnit event listener`: https://phpunit.de/manual/current/en/extending-phpunit.html#extending-phpunit.PHPUnit_Framework_TestListener |
| 1035 | +.. _`PHPUnit event listener`: https://docs.phpunit.de/en/10.0/extending-phpunit.html#phpunit-s-event-system |
1036 | 1036 | .. _`ErrorHandler component`: https://.com/symfony/error-handler
|
1037 |
| -.. _`PHPUnit's assertStringMatchesFormat()`: https://phpunit.de/manual/current/en/appendixes.assertions.html#appendixes.assertions.assertStringMatchesFormat |
| 1037 | +.. _`PHPUnit's assertStringMatchesFormat()`: https://docs.phpunit.de/en/9.5/assertions.html#assertstringmatchesformat |
1038 | 1038 | .. _`PHP error handler`: https://www.php.net/manual/en/book.errorfunc.php
|
1039 |
| -.. _`environment variable`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.php-ini-constants-variables |
| 1039 | +.. _`environment variable`: https://docs.phpunit.de/en/9.5/configuration.html#the-env-element |
1040 | 1040 | .. _`@-silencing operator`: https://www.php.net/manual/en/language.operators.errorcontrol.php
|
1041 | 1041 | .. _`Travis CI`: https://travis-ci.org/
|
1042 |
| -.. _`test listener`: https://phpunit.de/manual/current/en/appendixes.configuration.html#appendixes.configuration.test-listeners |
1043 |
| -.. _`@covers`: https://phpunit.de/manual/current/en/appendixes.annotations.html#appendixes.annotations.covers |
| 1042 | +.. _`test listener`: https://docs.phpunit.de/en/9.5/configuration.html#the-extensions-element |
| 1043 | +.. _`@covers`: https://docs.phpunit.de/en/9.5/annotations.html#covers |
1044 | 1044 | .. _`PHP namespace resolutions rules`: https://www.php.net/manual/en/language.namespaces.rules.php
|
Original file line number | Diff line number | Diff line change |
---|
@@ -216,6 +216,6 @@ Symfony code.
|
216 | 216 | Now that we are confident (again) about the code we have written, we can
|
217 | 217 | safely think about the next batch of features we want to add to our framework.
|
218 | 218 |
|
219 |
| -.. _`PHPUnit`: https://phpunit.readthedocs.io/en/9.5/ |
220 |
| -.. _`test doubles`: https://phpunit.readthedocs.io/en/9.5/test-doubles.html |
| 219 | +.. _`PHPUnit`: https://docs.phpunit.de/en/9.5/ |
| 220 | +.. _`test doubles`: https://docs.phpunit.de/en/9.5/test-doubles.html |
221 | 221 | .. _`XDebug`: https://xdebug.org/
|
Original file line number | Diff line number | Diff line change |
---|
@@ -241,4 +241,4 @@ guessers using the :method:`Symfony\\Component\\Form\\Test\\FormIntegrationTestC
|
241 | 241 | and :method:`Symfony\\Component\\Form\\Test\\FormIntegrationTestCase::getTypeGuessers`
|
242 | 242 | methods.
|
243 | 243 |
|
244 |
| -.. _`PHPUnit data providers`: https://phpunit.readthedocs.io/en/9.5/writing-tests-for-phpunit.html#data-providers |
| 244 | +.. _`PHPUnit data providers`: https://docs.phpunit.de/en/9.5/writing-tests-for-phpunit.html#data-providers |
Original file line number | Diff line number | Diff line change |
---|
@@ -1118,13 +1118,13 @@ Learn more
|
1118 | 1118 | /components/css_selector
|
1119 | 1119 |
|
1120 | 1120 | .. _`PHPUnit`: https://phpunit.de/
|
1121 |
| -.. _`documentation`: https://phpunit.readthedocs.io/ |
1122 |
| -.. _`Writing Tests for PHPUnit`: https://phpunit.readthedocs.io/en/9.5/writing-tests-for-phpunit.html |
1123 |
| -.. _`PHPUnit documentation`: https://phpunit.readthedocs.io/en/9.5/configuration.html |
| 1121 | +.. _`documentation`: https://docs.phpunit.de/ |
| 1122 | +.. _`Writing Tests for PHPUnit`: https://docs.phpunit.de/en/9.5/writing-tests-for-phpunit.html |
| 1123 | +.. _`PHPUnit documentation`: https://docs.phpunit.de/en/9.5/configuration.html |
1124 | 1124 | .. _`unit test`: https://en.wikipedia.org/wiki/Unit_testing
|
1125 | 1125 | .. _`DAMADoctrineTestBundle`: https://.com/dmaicher/doctrine-test-bundle
|
1126 | 1126 | .. _`Doctrine data fixtures`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html
|
1127 | 1127 | .. _`DoctrineFixturesBundle documentation`: https://symfony.com/doc/current/bundles/DoctrineFixturesBundle/index.html
|
1128 | 1128 | .. _`SymfonyMakerBundle`: https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html
|
1129 |
| -.. _`PHPUnit Assertion`: https://phpunit.readthedocs.io/en/9.5/assertions.html |
| 1129 | +.. _`PHPUnit Assertion`: https://docs.phpunit.de/en/9.5/assertions.html |
1130 | 1130 | .. _`section 4.1.18 of RFC 3875`: https://tools.ietf.org/html/rfc3875#section-4.1.18
|
You can’t perform that action at this time.
0 commit comments