2024-12-17 15:06:08 +00:00
|
|
|
<?xml version="1.0"?>
|
2024-04-26 09:26:22 +00:00
|
|
|
<phpunit
|
2024-12-17 15:06:08 +00:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
|
|
|
|
bootstrap="vendor/codeigniter4/framework/system/Test/bootstrap.php"
|
|
|
|
backupGlobals="false"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
colors="true"
|
|
|
|
columns="max"
|
|
|
|
failOnRisky="true"
|
|
|
|
failOnWarning="true"
|
|
|
|
displayDetailsOnTestsThatTriggerDeprecations="true"
|
|
|
|
displayDetailsOnTestsThatTriggerErrors="true"
|
|
|
|
displayDetailsOnTestsThatTriggerNotices="true"
|
|
|
|
displayDetailsOnTestsThatTriggerWarnings="true"
|
|
|
|
displayDetailsOnPhpunitDeprecations="true"
|
|
|
|
cacheDirectory="build/.phpunit.cache"
|
|
|
|
>
|
|
|
|
<coverage
|
|
|
|
pathCoverage="false"
|
|
|
|
ignoreDeprecatedCodeUnits="true"
|
|
|
|
disableCodeCoverageIgnore="true">
|
2023-02-21 17:27:45 +00:00
|
|
|
<report>
|
2024-12-17 15:06:08 +00:00
|
|
|
<clover outputFile="build/logs/clover.xml" />
|
|
|
|
<html outputDirectory="build/logs/html" />
|
|
|
|
<php outputFile="build/logs/coverage.serialized" />
|
|
|
|
<text outputFile="php://stdout" showUncoveredFiles="false" />
|
2023-02-21 17:27:45 +00:00
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="App">
|
|
|
|
<directory>./tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<logging>
|
2024-12-17 15:06:08 +00:00
|
|
|
<testdoxHtml outputFile="build/logs/testdox.html" />
|
|
|
|
<testdoxText outputFile="build/logs/testdox.txt" />
|
|
|
|
<junit outputFile="build/logs/logfile.xml" />
|
2023-02-21 17:27:45 +00:00
|
|
|
</logging>
|
2024-04-26 09:26:22 +00:00
|
|
|
<source>
|
|
|
|
<include>
|
2024-12-17 15:06:08 +00:00
|
|
|
<directory suffix=".php">./app</directory>
|
2024-04-26 09:26:22 +00:00
|
|
|
</include>
|
|
|
|
<exclude>
|
2024-12-17 15:06:08 +00:00
|
|
|
<directory suffix=".php">./app/Views</directory>
|
|
|
|
<file>./app/Config/Routes.php</file>
|
2024-04-26 09:26:22 +00:00
|
|
|
</exclude>
|
|
|
|
</source>
|
2023-02-21 17:27:45 +00:00
|
|
|
<php>
|
2024-12-17 15:06:08 +00:00
|
|
|
<server name="app.baseURL" value="http://example.com/" />
|
2023-02-21 17:27:45 +00:00
|
|
|
<!-- Directory containing phpunit.xml -->
|
2024-12-17 15:06:08 +00:00
|
|
|
<const name="HOMEPATH" value="./" />
|
2023-02-21 17:27:45 +00:00
|
|
|
<!-- Directory containing the Paths config file -->
|
2024-12-17 15:06:08 +00:00
|
|
|
<const name="CONFIGPATH" value="./app/Config/" />
|
2023-02-21 17:27:45 +00:00
|
|
|
<!-- Directory containing the front controller (index.php) -->
|
2024-12-17 15:06:08 +00:00
|
|
|
<const name="PUBLICPATH" value="./public/" />
|
2023-02-21 17:27:45 +00:00
|
|
|
<!-- Database configuration -->
|
2024-12-17 15:06:08 +00:00
|
|
|
<env name="database.tests.hostname" value="mariadb" />
|
|
|
|
<env name="database.tests.database" value="test" />
|
|
|
|
<env name="database.tests.username" value="castopod" />
|
|
|
|
<env name="database.tests.password" value="castopod" />
|
|
|
|
<env name="database.tests.DBDriver" value="MySQLi" />
|
|
|
|
<env name="database.tests.DBPrefix" value="tests_" />
|
|
|
|
<env name="restapi.enabled" value="true" />
|
2023-02-21 17:27:45 +00:00
|
|
|
</php>
|
2024-12-17 15:06:08 +00:00
|
|
|
</phpunit>
|