I'm just unit testing a single file and although it's the only one to get unit tested (good), code coverage is done on more than just this single file (bad). It covers some files in my PEAR directory for some reason I can't understand yet, so all my coverage stats are distorted.
So I'm trying to eliminate these extra files, but can't get the format right for an absolute directory:
<phpunit>
<testsuites>
<testsuite name="My Test Suite">
<file>AntProxyTest.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="/tmp/report" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
</logging>
<filter>
<blacklist>
<directory suffix=".php">c:\php\pear</directory>
</blacklist>
</filter>
</phpunit>
is not excluding as I wish, either are forward slashes or file://c:/php/pear.