Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ You can also limit a test run to a directory or a specific test file:
.. code-block:: terminal
# run all tests of the application
$ ./bin/phpunit
$ php bin/phpunit
# run all tests in the Util/ directory
$ ./bin/phpunit tests/Util
$ php bin/phpunit tests/Util
# run tests for the Calculator class
$ ./bin/phpunit tests/Util/CalculatorTest.php
$ php bin/phpunit tests/Util/CalculatorTest.php
.. index::
single: Tests; Functional tests
Expand Down