xqddd/Notifications

View on GitHub
phpunit.xml

Summary

Maintainability
Test Coverage
<?xml version="1.0" encoding="utf-8"?>
<phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="./vendor/autoload.php">
    <logging>
        <log type="testdox-html" target="./build/testdox.html"></log>
        <log type="coverage-html" target="./build/coverage"></log>
    </logging>
    <filter>
        <blacklist>
            <directory>vendor</directory>
        </blacklist>
    </filter>
    <testsuites>
        <testsuite name="all">
            <directory suffix="Test.php">tests/</directory>
            <exclude>/vendor</exclude>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist addUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">src/</directory>
            <exclude>
                <directory>tests/</directory>
                <directory>build/</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>