coralogix/php-coralogix-sdk

View on GitHub
phpunit.xml.dist

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="tests/bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         stopOnFailure="true">
    <testsuites>
        <testsuite name="Coralogix Unit Tests Suit">
            <directory>tests/Coralogix/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src/Coralogix/</directory>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-clover" target="clover.xml"/>
        <log type="coverage-html" target="./reports"/>
        <log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="false"/>
    </logging>
    <php>
        <ini name="date.timezone" value="UTC"/>
    </php>
</phpunit>