awsmug/torro-forms-plugin-boilerplate

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<phpunit
    backupGlobals="false"
    backupStaticAttributes="false"
    bootstrap="tests/phpunit/includes/bootstrap.php"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    processIsolation="false"
    stopOnError="false"
    stopOnFailure="false"
    stopOnIncomplete="false"
    stopOnSkipped="false"
    syntaxCheck="false"
    verbose="true"
    >
    <testsuites>
        <testsuite>
            <directory suffix=".php">./tests/phpunit/tests/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist>
            <directory>./src</directory>
            <file>./torro-forms-plugin-boilerplate.php</file>
            <exclude>
                <directory>./src/translations</directory>
                <directory>./templates</directory>
                <directory>./vendor</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>