Skip to content

Commit 487775c

Browse files
committed
minor symfony#10959 Update testing.rst to be compatible with windows (Raggok)
This PR was merged into the 4.2 branch. Discussion ---------- Update testing.rst to be compatible with windows commands compatible with windows <!-- If your pull request fixes a BUG, use the oldest maintained branch that contains the bug (see https://symfony.com/roadmap for the list of maintained branches). If your pull request documents a NEW FEATURE, use the same Symfony branch where the feature was introduced (and `master` for features of unreleased versions). --> Commits ------- 5aacfeb Update testing.rst to be compatible with windows
2 parents d6b8fb1 + 5aacfeb commit 487775c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,13 @@ You can also limit a test run to a directory or a specific test file:
109109
.. code-block:: terminal
110110
111111
# run all tests of the application
112-
$ ./bin/phpunit
112+
$ php bin/phpunit
113113
114114
# run all tests in the Util/ directory
115-
$ ./bin/phpunit tests/Util
115+
$ php bin/phpunit tests/Util
116116
117117
# run tests for the Calculator class
118-
$ ./bin/phpunit tests/Util/CalculatorTest.php
118+
$ php bin/phpunit tests/Util/CalculatorTest.php
119119
120120
.. index::
121121
single: Tests; Functional tests

0 commit comments

Comments
 (0)