File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -22,15 +22,20 @@ 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:
29
26
30
27
.. code-block :: terminal
31
28
32
29
$ ./vendor/bin/simple-phpunit
33
30
31
+ The first time you run this, it will download PHPUnit itself and make its
32
+ classes available in your app.
33
+
34
+ Each test - whether it's a unit test or a functional test - is a PHP class
35
+ that should live in the ``tests/ `` directory of your application. If you follow
36
+ this rule, then you can run all of your application's tests with the same
37
+ command as before.
38
+
34
39
PHPUnit is configured by the ``phpunit.xml.dist `` file in the root of your
35
40
Symfony application.
36
41
You can’t perform that action at this time.
0 commit comments