2017-06-14 04:25:37 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-05 00:41:04 +00:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
|
|
|
bootstrap="bootstrap/tests.php"
|
|
|
|
colors="true"
|
|
|
|
printerClass="NunoMaduro\Collision\Adapters\Phpunit\Printer"
|
2021-01-23 20:09:16 +00:00
|
|
|
>
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-06-14 04:25:37 +00:00
|
|
|
<testsuites>
|
2018-03-05 04:42:33 +00:00
|
|
|
<testsuite name="Integration">
|
2022-05-05 00:41:04 +00:00
|
|
|
<directory>./tests/Integration</directory>
|
2017-06-14 04:25:37 +00:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Unit">
|
2022-05-05 00:41:04 +00:00
|
|
|
<directory>./tests/Unit</directory>
|
2017-06-14 04:25:37 +00:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
2018-05-20 23:38:27 +00:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2022-05-05 00:41:04 +00:00
|
|
|
<env name="DB_CONNECTION" value="mysql"/>
|
|
|
|
<env name="DB_DATABASE" value="panel_test"/>
|
2017-06-14 04:25:37 +00:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2018-11-26 00:25:18 +00:00
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
2017-06-16 04:03:22 +00:00
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
2017-06-14 04:25:37 +00:00
|
|
|
</php>
|
|
|
|
</phpunit>
|