From 5aacfeb2214910bb1d3292894dc4132aef03ab8d Mon Sep 17 00:00:00 2001 From: Raggok Date: Sat, 2 Feb 2019 09:18:05 -0600 Subject: [PATCH] Update testing.rst to be compatible with windows commands compatible with windows --- testing.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing.rst b/testing.rst index 793ba3487d9..fae642bb318 100644 --- a/testing.rst +++ b/testing.rst @@ -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