thunderer/SimilarWebApi

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
    backupGlobals = "false"
    backupStaticAttributes = "false"
    colors = "true"
    convertErrorsToExceptions = "true"
    convertNoticesToExceptions = "true"
    convertWarningsToExceptions = "true"
    processIsolation = "false"
    stopOnFailure = "false"
    syntaxCheck = "false"
    bootstrap = "vendor/autoload.php"
    >

    <testsuites>
        <testsuite name="SimilarWeb PHP API Library Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>

    <logging>
        <log type="coverage-html" target="coverage" charset="UTF-8"
             yui="true" highlight="false" lowUpperBound="50" highLowerBound="90"/>
        <log type="coverage-clover" target="coverage.xml"/>
    </logging>

    <filter>
        <whitelist>
            <directory>./src</directory>
        </whitelist>
    </filter>
</phpunit>