Files
web/phpunit.xml
2025-12-09 22:17:50 +08:00

44 lines
1.4 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2025, Антон Аксенов
~ This file is part of m3u.su project
~ MIT License: https://git.axenov.dev/IPTV/web/src/branch/master/LICENSE
-->
<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="Controllers">-->
<!-- <directory>tests/Http/Controllers</directory>-->
<!-- </testsuite>-->
<!--</testsuites>-->
<source>
<include>
<directory>app/</directory>
<directory>config/</directory>
<directory>public/</directory>
</include>
<exclude>
<directory>cache/</directory>
<directory>views/</directory>
<directory>vendor/</directory>
</exclude>
</source>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value=":memory:"/>
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>