smart-io/php-3pl-central

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="test/bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         stopOnFailure="false"
         syntaxCheck="false">
    <testsuites>
        <testsuite name="3PL Central API Test Suite">
            <directory>./test/tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">.</directory>
            <exclude>
                <directory>vendor/</directory>
                <directory>test/</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>