christophehurpeau/php-importer

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit bootstrap="vendor/autoload.php"
    convertErrorsToExceptions="true"
    convertWarningsToExceptions="true"
    convertNoticesToExceptions="true"
>
    <testsuites>
        <testsuite name="All tests">
            <directory suffix="Test.php">tests/src</directory>
        </testsuite>
    </testsuites>
    <logging>
        <log type="coverage-html" target="./tests/output/Coverage/"
            charset="UTF-8" yui="true" highlight="true" />
        <log type="junit" target="./tests/output/Results/Results.xml"
            logIncompleteSkipped="true" />
    </logging>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src/</directory>
            <exclude>

            </exclude>
        </whitelist>
    </filter>
</phpunit>