test:coverage relies on XDebug to collect its information, you need to install it and enable it first.

How does it work?

link|improve this question

12% accept rate
feedback

3 Answers

It is a PHP module, requiring a small amount of server-side configuration to install

It expands the functionality of the PHP software itself by modifying its execution of scripts, pulling in details and allowing a much higher precision execution (including modifying code while its being executed and viewing variables/stacks/memory/etc) and formatting of process stack dumps. Its great, and free!

View more about it here: http://xdebug.org/docs/

link|improve this answer
Can it be used to debug into the c code that is actually executed? – vps Feb 20 '10 at 20:46
feedback

Or in human terms of why Grizly said, it allows you to find bottlenecks (something that slows down the rest if your code) in your code so you can fix it. Its useful if you are performance freak (like me) or expecting a high traffic load.

link|improve this answer
feedback

XDebug is also used by PHPUnit to generate coverage statistics when running unit tests.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.