Part-DB.Part-DB-server/phpunit.xml.dist

41 lines
1.4 KiB
Text
Raw Normal View History

2019-02-23 16:49:38 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
2023-05-27 21:20:21 +02:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2025-07-14 00:15:08 +02:00
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
2023-05-27 21:20:21 +02:00
colors="true"
2025-07-14 00:15:08 +02:00
failOnDeprecation="true"
failOnNotice="true"
failOnWarning="true"
2023-05-27 21:20:21 +02:00
bootstrap="tests/bootstrap.php"
2025-07-14 00:15:08 +02:00
cacheDirectory=".phpunit.cache"
backupGlobals="false"
2023-05-27 21:20:21 +02:00
>
2025-07-14 00:15:08 +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"/>
<ini name="memory_limit" value="1G"/>
<ini name="display_errors" value="1"/>
</php>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
2023-05-27 21:20:21 +02:00
2025-07-14 00:15:08 +02:00
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<extensions>
<bootstrap class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension" />
2025-07-14 00:15:08 +02:00
<bootstrap class="Symfony\Bridge\PhpUnit\SymfonyExtension">
<parameter name="clock-mock-namespaces" value="App" />
<parameter name="dns-mock-namespaces" value="App" />
</bootstrap>
</extensions>
2019-02-23 16:49:38 +01:00
</phpunit>