<?xml version="1.0" encoding="UTF-8"?>

<phpunit bootstrap="tests/bootstrap.php" stderr="true" processIsolation="true" colors="true" beStrictAboutTestsThatDoNotTestAnything="false">
    <testsuites>
        <testsuite name="Shieldon SimpleCache Test Suite">
            <directory>tests/SimpleCache/</directory>
            <exclude>src/SimpleCache/Driver/Wincache.php</exclude>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">src/</directory>
            <exclude>
                <file>src/SimpleCache/Driver/Wincache.php</file>
            </exclude>
        </whitelist>
    </filter>
    <php>
        <ini name="date.timezone" value="UTC"/>      
        <const name="PHPUNIT_TEST" value="TRUE"/>
    </php>
    <logging>
        <log type="coverage-clover" target="coverage.xml"/>
        <log type="coverage-html" target="tests/report"/>
    </logging>
</phpunit>