2017-06-14 06:25:37 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-10-14 18:59:20 +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>
|
2022-10-14 18:59:20 +02:00
|
|
|
<env name="APP_ENV" value="testing" />
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4" />
|
|
|
|
<env name="DB_DATABASE" value="panel_test" />
|
|
|
|
<env name="CACHE_DRIVER" value="array" />
|
|
|
|
<env name="SESSION_DRIVER" value="array" />
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync" />
|
|
|
|
<env name="MAIL_DRIVER" value="array" />
|
2017-06-14 06:25:37 +02:00
|
|
|
</php>
|
|
|
|
</phpunit>
|