2

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

フィルター内の何も機能していないように見えることを除いて、それは問題なく機能します。

ここで何が間違っていますか?

4

1 に答える 1

4

phpunit がフィルタの定義とテストスイート内のロギングをサポートしているかどうかはわかりません。それをすべて独自に定義するとうまくいくはずです:

<phpunit
bootstrap="./bootstrap.php"
verbose="true">
    <testsuites>
        <testsuite name="Test Suite">
            <directory suffix=".php">./Base/src/</directory>
        </testsuite>
    </testsuites>
    <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>
</phpunit>
于 2012-12-03T17:23:11.603 に答える