rhdc/php-akamai-middleware

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
    bootstrap="tests/bootstrap.php"
>
    <testsuites>
        <testsuite name="RHDC Akamai middleware test suite">
            <directory suffix="Test.php">tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory>src/</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="test-coverage-report/clover.xml" />
        <log type="coverage-html" target="test-coverage-report" />
    </logging>
</phpunit>