The whitelist isn't working how I would expect when get code coverage reports. I am using Zend Framework and my Zend files are also in the library directory just like the project quickstart.
I'm running PHPUnit 3.6 from Netbeans 7.0.1
I only really want to see the coverage for the classes for MyLib.
<whitelist>
<directory suffix=".php">../../library/MyLib</directory>
</whitelist>
But in the report I seem to get a percentage value for several Zend files eg. Zend_Controller_Front, Zend_Loader_Autoloader etc.
Obviously I haven't written any tests for these classes and it is no surprise that I have 0% coverage.
What have I missed?
addUncoveredFilesFromWhitelist="true"? And which PHPUnit version are you using? – hakre Dec 7 '11 at 11:56