Skip to content

Commit e9a9368

Browse files
committed
bug #5501 Fix typo in url for PHPUnit test coverage report (TrueGit)
This PR was merged into the 2.7 branch. Discussion ---------- Fix typo in url for PHPUnit test coverage report | Q | A | ------------- | --- | Doc fix? | yes | New docs? | no | Applies to | 2.7 | Fixed tickets | NA? In symfony-docs/create_framework/unit-testing.rst, on topic of using PHPUnit to create a test coverage report, it appears the path to the report should be "example.com/cov/src/Simplex/Framework.php.html" instead of "example.com/cov/src_Simplex_Framework.php.html". Commits ------- e5ea3f0 Fix typo in url for PHPUnit test coverage report
2 parents 2437bd9 + e5ea3f0 commit e9a9368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

create_framework/unit-testing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ coverage feature (you need to enable `XDebug`_ first):
178178
179179
$ phpunit --coverage-html=cov/
180180
181-
Open ``example.com/cov/src_Simplex_Framework.php.html`` in a browser and check
181+
Open ``example.com/cov/src/Simplex/Framework.php.html`` in a browser and check
182182
that all the lines for the Framework class are green (it means that they have
183183
been visited when the tests were executed).
184184

0 commit comments

Comments
 (0)