gianarb/zf2-psysh-module

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<?xml version="1.0"?>
<phpunit
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    bootstrap="vendor/autoload.php"
    convertWarningsToExceptions="true"
    stopOnFailure="false"
    backupGlobals="false"
    syntaxCheck="true"
>
    <testsuite name="PsyshModule tests">
        <directory>./tests</directory>
    </testsuite>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./src</directory>
        </whitelist>
    </filter>
</phpunit>