From e5ea3f0bd7a92e19cc0bf0f75130954f4a668c88 Mon Sep 17 00:00:00 2001 From: TrueGit Date: Tue, 7 Jul 2015 15:38:04 -0400 Subject: [PATCH] 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". --- create_framework/unit-testing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_framework/unit-testing.rst b/create_framework/unit-testing.rst index b34b3a76e2d..a1b38e58dae 100644 --- a/create_framework/unit-testing.rst +++ b/create_framework/unit-testing.rst @@ -173,7 +173,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).