2017-06-13 23:25:37 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-10-14 10:59:20 -06:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
|
|
|
bootstrap="bootstrap/tests.php"
|
|
|
|
colors="true"
|
2021-01-23 12:09:16 -08:00
|
|
|
>
|
2023-02-23 12:30:16 -07:00
|
|
|
<coverage>
|
2021-01-23 12:09:16 -08:00
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-06-13 23:25:37 -05:00
|
|
|
<testsuites>
|
2018-03-04 22:42:33 -06:00
|
|
|
<testsuite name="Integration">
|
2022-05-04 20:41:04 -04:00
|
|
|
<directory>./tests/Integration</directory>
|
2017-06-13 23:25:37 -05:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Unit">
|
2022-05-04 20:41:04 -04:00
|
|
|
<directory>./tests/Unit</directory>
|
2017-06-13 23:25:37 -05:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
2022-10-14 10:59:20 -06:00
|
|
|
<env name="APP_ENV" value="testing" />
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4" />
|
2022-10-31 11:38:56 -06:00
|
|
|
<env name="DB_DATABASE" value="testing" />
|
2022-10-14 10:59:20 -06:00
|
|
|
<env name="CACHE_DRIVER" value="array" />
|
2022-11-25 15:29:04 -05:00
|
|
|
<env name="MAIL_MAILER" value="array" />
|
2022-10-14 10:59:20 -06:00
|
|
|
<env name="SESSION_DRIVER" value="array" />
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync" />
|
2017-06-13 23:25:37 -05:00
|
|
|
</php>
|
|
|
|
</phpunit>
|