laravel-shop/phpunit.xml

38 lines
1.2 KiB
XML
Raw Permalink Normal View History

2025-11-21 10:49:41 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2025-11-22 17:09:45 +00:00
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
2025-11-29 11:05:02 +00:00
bootstrap="tests/bootstrap.php"
2025-11-22 17:09:45 +00:00
colors="true"
processIsolation="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
2025-12-29 10:11:27 +00:00
cacheResult="true"
executionOrder="defects"
beStrictAboutOutputDuringTests="false"
2025-11-22 17:09:45 +00:00
>
2025-11-21 10:49:41 +00:00
<testsuites>
<testsuite name="BlaxShop Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
2025-11-29 11:05:02 +00:00
<source>
2025-11-21 10:49:41 +00:00
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory>./src/database</directory>
</exclude>
2025-11-29 11:05:02 +00:00
</source>
<coverage includeUncoveredFiles="true" />
2025-11-21 10:49:41 +00:00
<php>
<env name="APP_ENV" value="testing"/>
2025-12-29 10:11:27 +00:00
<env name="DB_CONNECTION" value="sqlite"/>
2025-11-21 10:49:41 +00:00
<env name="DB_DATABASE" value=":memory:"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
2025-11-22 17:09:45 +00:00
<env name="SHOP_CACHE_ENABLED" value="false"/>
2025-12-29 10:11:27 +00:00
<ini name="memory_limit" value="512M"/>
2025-11-21 10:49:41 +00:00
</php>
</phpunit>