2024-07-10 22:25:27 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
|
|
|
backupGlobals="false"
|
|
|
|
|
colors="true"
|
2025-09-09 19:43:35 +02:00
|
|
|
failOnNotice="true"
|
2025-10-25 22:42:20 +02:00
|
|
|
failOnWarning="true"
|
2024-07-10 22:25:27 +02:00
|
|
|
bootstrap="tests/bootstrap.php"
|
2025-09-09 19:43:35 +02:00
|
|
|
cacheDirectory=".phpunit.cache"
|
2024-07-10 22:25:27 +02:00
|
|
|
>
|
|
|
|
|
<php>
|
|
|
|
|
<ini name="display_errors" value="1" />
|
|
|
|
|
<ini name="error_reporting" value="-1" />
|
|
|
|
|
<server name="APP_ENV" value="test" force="true" />
|
|
|
|
|
<server name="SHELL_VERBOSITY" value="-1" />
|
|
|
|
|
</php>
|
|
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="Project Test Suite">
|
|
|
|
|
<directory>tests</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
</testsuites>
|
|
|
|
|
|
2025-09-09 19:43:35 +02:00
|
|
|
<source ignoreSuppressionOfDeprecations="true" restrictNotices="true" restrictWarnings="true">
|
2024-07-10 22:25:27 +02:00
|
|
|
<include>
|
2025-09-09 19:43:35 +02:00
|
|
|
<directory>src</directory>
|
2024-07-10 22:25:27 +02:00
|
|
|
</include>
|
2025-09-09 19:43:35 +02:00
|
|
|
</source>
|
2024-07-10 22:25:27 +02:00
|
|
|
|
|
|
|
|
<extensions>
|
2025-10-14 00:09:01 +02:00
|
|
|
<bootstrap class="Zenstruck\Foundry\PHPUnit\FoundryExtension" />
|
2024-07-10 22:25:27 +02:00
|
|
|
</extensions>
|
|
|
|
|
</phpunit>
|