2024-04-28 19:25:00 +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"
|
2024-04-30 10:18:15 +00:00
|
|
|
stopOnFailure="true"
|
2024-04-28 19:25:00 +00:00
|
|
|
colors="true"
|
|
|
|
>
|
|
|
|
<logging>
|
|
|
|
<testdoxText outputFile="php://stdout"/>
|
|
|
|
<junit outputFile="coverage.xml"/>
|
|
|
|
</logging>
|
|
|
|
<coverage includeUncoveredFiles="true"
|
|
|
|
pathCoverage="false"
|
|
|
|
ignoreDeprecatedCodeUnits="true"
|
|
|
|
disableCodeCoverageIgnore="true">
|
|
|
|
<report>
|
|
|
|
<clover outputFile="clover.xml"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<testsuites>
|
|
|
|
|
|
|
|
<testsuite name="Unit">
|
|
|
|
<directory>tests/Unit</directory>
|
|
|
|
</testsuite>
|
|
|
|
|
|
|
|
</testsuites>
|
|
|
|
<source>
|
|
|
|
<include>
|
|
|
|
<directory>app</directory>
|
|
|
|
<directory>Modules</directory>
|
2024-04-30 19:46:19 +00:00
|
|
|
</include>
|
|
|
|
<exclude>
|
|
|
|
<directory>app/Filament</directory>
|
2024-04-29 10:20:43 +00:00
|
|
|
<directory>Modules/*/App/Filament</directory>
|
|
|
|
<directory>Modules/*/Filament</directory>
|
2024-04-30 19:46:19 +00:00
|
|
|
</exclude>
|
2024-04-28 19:25:00 +00:00
|
|
|
</source>
|
|
|
|
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
|
|
<ini name="memory_limit" value="-1"/>
|
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
|
|
|
<env name="MAIL_MAILER" value="array"/>
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
|
|
<env name="TELESCOPE_ENABLED" value="false"/>
|
|
|
|
</php>
|
|
|
|
|
|
|
|
</phpunit>
|