<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         colors="true"
>
    <testsuites>
        <testsuite name="Unit">
            <directory>tests/Unit</directory>
        </testsuite>
        <testsuite name="Integration">
            <directory>tests/Integration</directory>
        </testsuite>
        <testsuite name="Feature">
            <directory>tests/Feature</directory>
        </testsuite>
    </testsuites>

    <source>
        <include>
            <directory>app</directory>
        </include>
    </source>

    <php>
        <env name="APP_ENV"         value="testing"/>
        <env name="APP_KEY"         value="base64:Yt/mViHmiK1jhTJ9ev0M2IulyC0b2rgxum+qe6X6NS0="/>
        <env name="BCRYPT_ROUNDS"   value="4"/>
        <env name="CACHE_DRIVER"    value="array"/>
        <env name="QUEUE_CONNECTION" value="sync"/>
        <env name="SESSION_DRIVER"  value="array"/>
        <env name="STORAGE_PATH"    value="storage/data"/>
        <env name="BACKUP_PATH"     value="storage/backups"/>
        <env name="LOG_PATH"        value="storage/logs"/>
    </php>
</phpunit>
