gsouf/thumbz

View on GitHub
phpunit.dist.xml

Summary

Maintainability
Test Coverage
<phpunit bootstrap="test/bootstrap.php"
         backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         verbose="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">


    <testsuites>
        <testsuite name="TestsSet">
            <directory>test/suites/TDD</directory>
        </testsuite>
    </testsuites>


    <filter>
        <blacklist>
            <directory>./vendor</directory>
            <directory>./doc</directory>
            <directory>./script</directory>
            <directory>./test</directory>
        </blacklist>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src</directory>
        </whitelist>
    </filter>


</phpunit>