Skip to content

Commit

Permalink
Fix typo in url for PHPUnit test coverage report
Browse files Browse the repository at this point in the history
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".
  • Loading branch information
TrueGit authored and wouterj committed Jul 23, 2015
1 parent 7c5210c commit 5dd9aea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion create_framework/unit-testing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ coverage feature (you need to enable `XDebug`_ first):
$ phpunit --coverage-html=cov/
Open ``example.com/cov/src_Simplex_Framework.php.html`` in a browser and check
Open ``example.com/cov/src/Simplex/Framework.php.html`` in a browser and check
that all the lines for the Framework class are green (it means that they have
been visited when the tests were executed).

Expand Down

0 comments on commit 5dd9aea

Please sign in to comment.