LowG33kDev/gear-framework

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
    <testsuites>
        <testsuite name="all">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">./tests/</directory>
            <exclude>
                <directory suffix=".php">./tests/Fixtures</directory>
            </exclude>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="./tmp/coverage" lowUpperBound="35" highLowerBound="70" charset="UTF-8" yui="true" highlight="true"/>
        <log type="coverage-clover" target="./tmp/coverage.xml"/>
        <log type="coverage-text" target="./tmp/coverage.txt"/>
        <log type="json" target="./tmp/report.json"/>
        <log type="tap" target="./tmp/report.tap"/>
    </logging>
</phpunit>