2016-03-03 11:56:29 -06:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-11-03 17:18:31 +01:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2023-05-26 22:46:11 +02:00
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
2018-05-09 08:05:17 -05:00
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
|
colors="true"
|
2023-05-26 22:46:11 +02:00
|
|
|
>
|
|
|
|
|
<testsuites>
|
2023-05-26 23:06:29 +02:00
|
|
|
<testsuite name="Application Test Suite">
|
|
|
|
|
<directory>tests/</directory>
|
|
|
|
|
</testsuite>
|
2023-05-26 22:46:11 +02:00
|
|
|
<testsuite name="Unit">
|
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
<testsuite name="Feature">
|
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
|
|
|
|
<source>
|
|
|
|
|
<include>
|
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
|
</include>
|
|
|
|
|
</source>
|
2023-05-26 22:48:05 +02:00
|
|
|
<groups>
|
|
|
|
|
<exclude>
|
|
|
|
|
<group>browser</group>
|
|
|
|
|
<group>mibs</group>
|
|
|
|
|
</exclude>
|
|
|
|
|
</groups>
|
2023-05-26 22:46:11 +02:00
|
|
|
<php>
|
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
|
<env name="DB_CONNECTION" value="testing"/>
|
|
|
|
|
<env name="MAIL_MAILER" value="array"/>
|
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
|
|
|
<env name="TELESCOPE_ENABLED" value="false"/>
|
|
|
|
|
<const name="PHPUNIT_RUNNING" value="true"/>
|
|
|
|
|
</php>
|
2016-03-03 11:56:29 -06:00
|
|
|
</phpunit>
|