pingcrm/phpunit.xml

32 lines
1.2 KiB
XML
Raw Normal View History

2019-03-05 18:10:11 -03:00
<?xml version="1.0" encoding="UTF-8"?>
2020-07-29 11:21:32 -03:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
2019-03-05 18:10:11 -03:00
bootstrap="vendor/autoload.php"
colors="true"
2020-07-29 11:21:32 -03:00
>
2019-03-05 18:10:11 -03:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
2020-09-08 19:45:49 -03:00
<coverage processUncoveredFiles="true">
<include>
2019-03-05 18:10:11 -03:00
<directory suffix=".php">./app</directory>
2020-09-08 19:45:49 -03:00
</include>
</coverage>
2019-03-05 18:10:11 -03:00
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
2021-12-08 13:59:08 -03:00
<!-- <server name="DB_CONNECTION" value="sqlite"/> -->
<!-- <server name="DB_DATABASE" value=":memory:"/> -->
2020-07-29 11:21:32 -03:00
<server name="MAIL_MAILER" value="array"/>
2019-03-05 18:10:11 -03:00
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
2020-07-29 11:21:32 -03:00
<server name="TELESCOPE_ENABLED" value="false"/>
2019-03-05 18:10:11 -03:00
</php>
</phpunit>