<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="tests/bootstrap/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false"
        >
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory suffix="Test.php">./tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist>
            <directory suffix=".php">./src/</directory>
            <exclude>
                <directory>./src/config</directory>
                <file>./src/SmartyServiceProvider.php</file>
                <file>./src/SmartyCompileServiceProvider.php</file>
                <file>./src/SmartyConsoleServiceProvider.php</file>
                <file>./src/Cache/KeyValueStorage.php</file>
                <file>./src/Cache/Redis.php</file>
                <file>./src/Cache/Memcached.php</file>
                <file>./src/Exception/MethodNotFoundException.php</file>
            </exclude>
        </whitelist>
    </filter>
    <logging>
        <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
        <log type="coverage-clover" target="tests/build/clover.xml"/>
    </logging>
</phpunit>
