godaddy-wordpress/go

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit
    bootstrap=".dev/tests/php/bootstrap.php"
    backupGlobals="false"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    >
    <testsuites>
        <testsuite name="Go Test Suite">
            <directory prefix="test-" suffix=".php">./.dev/tests/php/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory>./includes</directory>
            <exclude>
                <file>./includes/classes/class-tgm-plugin-activation.php</file>
            </exclude>
        </whitelist>
    </filter>
    <php>
        <const name="PHPUNIT_THEME_TEST" value="true"/>
    </php>
</phpunit>