You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In your ``.env.test`` file, you can set ``APP_DEBUG=0`` to have your tests run without debug mode. This can speed up
2457
-
your tests considerably. You will need to ensure you cache is cleared before running the test suite. The best place to
2455
+
your tests considerably. You will need to ensure your cache is cleared before running the test suite. The best place to
2458
2456
do this is in your ``tests/bootstrap.php``:
2459
2457
2460
2458
::
@@ -2560,7 +2558,7 @@ In-memory Behavior
2560
2558
~~~~~~~~~~~~~~~~~~
2561
2559
2562
2560
Foundry allows to use "in-memory" repositories in your factories. This is mainly useful for `DDD <https://en.wikipedia.org/wiki/Domain-driven_design>`_
2563
-
applications or with `hexagonal architecture <https://en.wikipedia.org/wiki/Hexagonal_architecture_(software)>_`, where
2561
+
applications or with `hexagonal architecture <https://en.wikipedia.org/wiki/Hexagonal_architecture_(software)>`_, where
2564
2562
repositories in the domain are usually interfaces for which main implementations are Doctrine ones. You can tell Foundry to
2565
2563
use the "in-memory" version of these repositories.
2566
2564
@@ -2677,8 +2675,8 @@ Foundry is shipped with an extension for PHPUnit. You can install it by modifyin
2677
2675
2678
2676
This extension provides the following features:
2679
2677
2680
-
* :ref:`globally boot Foundry <_enable-foundry-in-your-testcase>` (and remove the needs of `Factories` trait)
2681
-
* possibility to :ref:`automate the reset database mechanism <_automatic-database-reset>`
2678
+
* :ref:`globally boot Foundry <enable-foundry-in-your-testcase>` (and remove the needs of `Factories` trait)
2679
+
* possibility to :ref:`automate the reset database mechanism <automatic-database-reset>`
2682
2680
* support for the `#[WithStory] Attribute`_
2683
2681
* ability to use ``Factory::create()`` in `PHPUnit Data Providers`_ (along with PHPUnit ^11.4)
0 commit comments