edsonmedina/php_testability

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit beStrictAboutTestsThatDoNotTestAnything="true" forceCoversAnnotation="true" beStrictAboutOutputDuringTests="true" verbose="true">
    <filter>
        <whitelist>
            <directory suffix=".php">.</directory>
            <exclude>
                <file>testFile.php</file>
                <directory suffix=".php">tests/</directory>
                <directory suffix=".php">vendor/</directory>
            </exclude>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="coverage" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
        <log type="coverage-clover" target="clover.xml"/>
    </logging>
    <testsuites>
        <testsuite name="Test Suite">
            <file phpVersion="5.4" phpVersionOperator=">=">tests/AllTests.php</file>
        </testsuite>
    </testsuites>
</phpunit>