2017-06-14 06:25:37 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-05-05 02:41:04 +02: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 21:09:16 +01:00
|
|
|
>
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-06-14 06:25:37 +02:00
|
|
|
<testsuites>
|
2018-03-05 05:42:33 +01:00
|
|
|
<testsuite name="Integration">
|
2022-05-05 02:41:04 +02:00
|
|
|
<directory>./tests/Integration</directory>
|
2017-06-14 06:25:37 +02:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Unit">
|
2022-05-05 02:41:04 +02:00
|
|
|
<directory>./tests/Unit</directory>
|
2017-06-14 06:25:37 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
2018-05-21 01:38:27 +02:00
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
2022-05-05 02:41:04 +02:00
|
|
|
<env name="DB_CONNECTION" value="mysql"/>
|
|
|
|
<env name="DB_DATABASE" value="panel_test"/>
|
2017-06-14 06:25:37 +02:00
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
2018-11-26 01:25:18 +01:00
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
2017-06-16 06:03:22 +02:00
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
2017-06-14 06:25:37 +02:00
|
|
|
</php>
|
|
|
|
</phpunit>
|