ctrlpanel/phpunit.xml

33 lines
1.2 KiB
XML
Raw Permalink Normal View History

2021-06-05 09:26:32 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Unit">
<directory suffix=".php">tests/Unit</directory>
2021-06-05 09:26:32 +00:00
</testsuite>
2021-06-10 17:17:03 +00:00
<testsuite name="Feature">
<directory suffix=".php">tests/Feature</directory>
</testsuite>
2021-06-05 09:26:32 +00:00
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="DB_CONNECTION" value="mysql"/>
<env name="DB_DATABASE" value="controlpanel_test"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<ini name="display_errors" value="true"/>
2021-06-05 09:26:32 +00:00
</php>
</phpunit>