Skip to content

Commit e5ea3f0

Browse files
committed
Fix typo in url for PHPUnit test coverage report
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".
1 parent 4df1ea8 commit e5ea3f0

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
@@ -173,7 +173,7 @@ coverage feature (you need to enable `XDebug`_ first):
173173
174174
$ phpunit --coverage-html=cov/
175175
176-
Open ``example.com/cov/src_Simplex_Framework.php.html`` in a browser and check
176+
Open ``example.com/cov/src/Simplex/Framework.php.html`` in a browser and check
177177
that all the lines for the Framework class are green (it means that they have
178178
been visited when the tests were executed).
179179

0 commit comments

Comments
 (0)