File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,15 +128,15 @@ Running Tests in Parallel
128128-------------------------
129129
130130The modified PHPUnit script allows running tests in parallel by providing
131- a directory containing multiple suites with their own ``phpunit.xml.dist ``.
131+ a directory containing multiple test suites with their own ``phpunit.xml.dist ``.
132132
133133.. code-block :: terminal
134134
135- ├── tests
136- │ ├── Functional
135+ ├── tests/
136+ │ ├── Functional/
137137 │ │ ├── ...
138138 │ │ └── phpunit.xml.dist
139- │ ├── Unit
139+ │ ├── Unit/
140140 │ │ ├── ...
141141 │ │ └── phpunit.xml.dist
142142
@@ -147,8 +147,8 @@ a directory containing multiple suites with their own ``phpunit.xml.dist``.
147147 The modified PHPUnit script will recursively go through the provided directory,
148148up to a depth of 3 subfolders or the value specified by the environment variable
149149``SYMFONY_PHPUNIT_MAX_DEPTH ``, looking for ``phpunit.xml.dist `` files and then
150- run each suite it finds in parallel, collecting their output and display each
151- suites test results in their own section.
150+ running each suite it finds in parallel, collecting their output and displaying
151+ each test suite results in their own section.
152152
153153Trigger Deprecation Notices
154154---------------------------
You can’t perform that action at this time.
0 commit comments