2016-03-25 01:18:05 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2023-03-06 17:24:09 -08:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
backupGlobals="false"
|
2024-08-06 13:37:53 -07:00
|
|
|
backupStaticProperties="false"
|
2023-03-06 17:24:09 -08:00
|
|
|
bootstrap="bootstrap/autoload.php"
|
2024-08-06 13:37:53 -07:00
|
|
|
cacheDirectory=".phpunit.cache"
|
2023-03-06 17:24:09 -08:00
|
|
|
colors="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
2024-08-06 13:37:53 -07:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
|
2023-03-06 17:24:09 -08:00
|
|
|
>
|
2021-12-02 11:44:32 -08:00
|
|
|
<testsuites>
|
2023-02-13 18:55:50 -08:00
|
|
|
<testsuite name="Unit">
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Feature">
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
2021-12-02 11:44:32 -08:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
2023-02-13 18:56:22 -08:00
|
|
|
<env name="APP_ENV" value="testing"/>
|
2023-02-13 18:55:50 -08:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2021-12-02 11:44:32 -08:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
2024-02-28 23:37:52 -08:00
|
|
|
<env name="MAIL_MAILER" value="array"/>
|
2021-12-02 11:44:32 -08:00
|
|
|
<env name="QUEUE_DRIVER" value="sync"/>
|
2023-03-06 17:24:09 -08:00
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2021-12-02 11:44:32 -08:00
|
|
|
<ini name="display_errors" value="true"/>
|
|
|
|
</php>
|
2024-08-06 13:37:53 -07:00
|
|
|
<source>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">app/</directory>
|
|
|
|
</include>
|
|
|
|
</source>
|
2016-03-25 01:18:05 -07:00
|
|
|
</phpunit>
|