phpunit.xml 870 Bytes
Newer Older
1 2 3
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
4
         bootstrap="bootstrap/autoload.php"
5 6 7 8 9
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
10
         stopOnFailure="false">
11 12
    <testsuites>
        <testsuite name="Application Test Suite">
13
            <directory>./tests/</directory>
14 15
        </testsuite>
    </testsuites>
16 17 18 19 20
    <filter>
        <whitelist>
            <directory suffix=".php">app/</directory>
        </whitelist>
    </filter>
21 22
    <php>
        <env name="APP_ENV" value="testing"/>
23 24
        <env name="CACHE_DRIVER" value="array"/>
        <env name="SESSION_DRIVER" value="array"/>
Laurence Ioannou committed
25
        <env name="QUEUE_DRIVER" value="sync"/>
26
    </php>
Graham Campbell committed
27
</phpunit>