stevegrunwell/revision-strike

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<phpunit
    bootstrap="./bootstrap.php.dist"
    backupGlobals="false"
    processIsolation="false"
    colors="false">
    <testsuites>
        <testsuite name="Plugin">
            <directory suffix="Test.php">./tests/PHPUnit</directory>
        </testsuite>
    </testsuites>
    <groups>
        <include></include>
        <exclude></exclude>
    </groups>
    <filter>
        <whitelist>
            <directory suffix=".php">includes</directory>
            <exclude></exclude>
        </whitelist>
    </filter>
    <php>
        <ini name="error_reporting" value="32767" />
        <ini name="display_errors" value="1" />
        <ini name="display_startup_errors" value="1" />
    </php>
</phpunit>