jilo-web/tests/phpunit.xml

37 lines
1.3 KiB
XML
Raw Normal View History

2025-02-18 14:36:31 +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="bootstrap.php"
colors="true"
testdox="true">
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./Unit</directory>
</testsuite>
2025-02-20 08:41:14 +00:00
<testsuite name="Feature">
<directory suffix="Test.php">./Feature</directory>
</testsuite>
<testsuite name="Functional">
<directory suffix="Test.php">./Functional</directory>
</testsuite>
2025-02-18 14:36:31 +00:00
</testsuites>
<coverage processUncoveredFiles="true">
<include>
2025-02-20 08:41:14 +00:00
<directory suffix=".php">../app</directory>
2025-02-18 14:36:31 +00:00
</include>
<exclude>
2025-02-20 08:41:14 +00:00
<directory>../app/templates</directory>
<directory>../app/includes</directory>
2025-02-18 14:36:31 +00:00
</exclude>
</coverage>
<php>
<env name="APP_ENV" value="testing"/>
2025-04-25 15:30:24 +00:00
<env name="DB_TYPE" value="mariadb"/>
<env name="DB_HOST" value="localhost"/>
<env name="DB_PORT" value="3306"/>
<env name="DB_DATABASE" value="jilo_test"/>
<env name="DB_USERNAME" value="root"/>
<env name="DB_PASSWORD" value=""/>
2025-02-18 14:36:31 +00:00
</php>
</phpunit>