SerendipityHQ/oauth-guzzle-middleware

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./vendor/autoload.php"
         colors="true">
    <php>
        <!-- Specify your twitter OAuth credentials -->
        <server name="OAUTH_CONSUMER_KEY" value="" />
        <server name="OAUTH_CONSUMER_SECRET" value="" />
        <server name="OAUTH_TOKEN" value="" />
        <server name="OAUTH_TOKEN_SECRET" value="" />
    </php>
    <testsuites>
        <testsuite>
            <directory>tests</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-html" target="build/coverage" title="SerendipityHQ Remotes" charset="UTF-8" yui="true" highlight="true"
             lowUpperBound="35" highLowerBound="70" />
    </logging>

    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src</directory>
        </whitelist>
    </filter>
</phpunit>