File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -22,10 +22,9 @@ wraps the original PHPUnit binary to provide additional features:
22
22
23
23
$ composer require --dev symfony/phpunit-bridge
24
24
25
- Each test - whether it's a unit test or a functional test - is a PHP class
26
- that should live in the ``tests/ `` directory of your application. If you follow
27
- this rule, then you can run all of your application's tests with the following
28
- command:
25
+ After the library downloads, try executing PHPUnit by running (the first time
26
+ you run this, it will download PHPUnit itself and make its classes available in
27
+ your app):
29
28
30
29
.. code-block :: terminal
31
30
@@ -39,6 +38,11 @@ command:
39
38
it again. Another solution is to remove the project's ``symfony.lock `` file and
40
39
run ``composer install `` to force the execution of all Symfony Flex recipes.
41
40
41
+ Each test - whether it's a unit test or a functional test - is a PHP class
42
+ that should live in the ``tests/ `` directory of your application. If you follow
43
+ this rule, then you can run all of your application's tests with the same
44
+ command as before.
45
+
42
46
PHPUnit is configured by the ``phpunit.xml.dist `` file in the root of your
43
47
Symfony application.
44
48
You can’t perform that action at this time.
0 commit comments