dev-master
9999999-dev https://github.com/tomzx/php-code-coverage-verifierPHP Code Coverage Verifier
MIT
The Requires
- php >=5.5
- symfony/console ~2.7
The Development Requires
by Tom Rochette
phpunit testing xunit php code coverage verifier
Wallogit.com
2017 © Pedro Peláez
PHP Code Coverage Verifier
PHP Code Coverage Verifier allows you to determine if a change you've just done to your PHP code is being tested/covered by your tests. It uses a clover-xml report from a phpunit run (or any other code coverage suite that outputs to clover-xml format) and a unified diff containing your changes. PHP Code Coverage Verifier will then generate a list of the covered and not covered changes., (*2)
The code is currently in a very crude state. It was done as a proof of concept and will improve if it proves useful to others., (*3)
PHP Code Coverage Verifier ships as a Composer package. You can include it in your project's composer.json and use in a console., (*4)
Before you run the command line, be sure to run your tests with phpunit (or other) and generate the clover xml file that will be used here. For instance, one can generate the clover-xml file with phpunit using phpunit --coverage-clover=my-clover.xml., (*5)
Then you need to generate the diff of your changes. Here we assume you will generate those using either svn diff or git diff (users of TortoiseGIT/TortoiseSVN can use "Create patch...")., (*6)
php vendor/bin/php-code-coverage-verifier verify --help Usage: verify [--display-not-covered-range[="..."]] clover-xml diff-file Arguments: clover-xml Path to the clover-xml file diff-file Path to the diff-file Options: --display-not-covered-range Will display which line aren't covered (default: false) --help (-h) Display this help message. --quiet (-q) Do not output any message. --verbose (-v) Increase verbosity of messages. --version (-V) Display this application version. --ansi Force ANSI output. --no-ansi Disable ANSI output. --no-interaction (-n) Do not ask any interactive question.
php vendor/bin/php-code-coverage-verifier verify my-clover.xml my-diff.patch Using clover-xml file: my-clover.xml With diff file: my-diff.patch Covered: controller/admin/stocks.php line 15 - 21 controller/admin/stocks.php line 91 - 97 controller/search.php line 26 - 32 controller/search.php line 376 - 384 model/user.php line 34 - 41 model/user.php line 44 - 51 Not covered: controller/account.php line 39 - 45 controller/admin/stocks.php line 27 - 33 controller/search.php line 36 - 42 controller/search.php line 187 - 193 model/user.php line 533 - 540 Ignored: application/composer.json Coverage: 40 covered (56.338%), 31 not covered (43.662%)
The code is licensed under the MIT license. See LICENSE., (*7)
PHP Code Coverage Verifier
MIT
phpunit testing xunit php code coverage verifier