Newer
Older
framework / phpunit.xml.dist
@Jim Parry Jim Parry on 1 Dec 2018 840 bytes Release 4.0.0-alpha.3
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/_support/_bootstrap.php"
        backupGlobals="false"
        colors="true"
        convertErrorsToExceptions="true"
        convertNoticesToExceptions="true"
        convertWarningsToExceptions="true"
        stopOnError="false"
        stopOnFailure="false"
        stopOnIncomplete="false"
        stopOnSkipped="false">
    <testsuites>
        <testsuite name="app">
            <directory>./tests</directory>
            <exclude>./tests/system</exclude>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./system</directory>
            <exclude>
                <directory>./system</directory>
            </exclude>
        </whitelist>
    </filter>

</phpunit>