PHPunit 3.7.1 PHP 5.3.14 Windows 7
cmdを使用して、phpunit.xmlが存在するディレクトリに「cd」して実行します
phpunit -c phpunit.xml
しかし、それはコードカバレッジを生成しません。
phpunit.xml:
<phpunit
bootstrap="./bootstrap.php"
verbose="true"
>
<testsuites>
<testsuite name="Test Suite">
<directory suffix=".php">./Base/src/</directory>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">../src</directory>
<exclude>
<directory suffix=".php">../../vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./CodeCoverage/"/>
</logging>
</testsuite>
</testsuites>
</phpunit>
私が走るとき
phpunit -c phpunit.xml --coverage-html CodeCoverage
フィルター内の何も機能していないように見えることを除いて、それは問題なく機能します。
ここで何が間違っていますか?