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

40 lines
1.2 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 -->
2019-02-23 16:49:38 +01:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="bin/.phpunit/phpunit.xsd"
2019-02-23 16:49:38 +01:00
backupGlobals="false"
colors="true"
2020-05-10 17:11:21 +02:00
bootstrap="tests/bootstrap.php"
2019-02-23 16:49:38 +01:00
>
<php>
<ini name="error_reporting" value="-1" />
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
2020-05-10 21:44:12 +02:00
<server name="SYMFONY_PHPUNIT_VERSION" value="8.5" />
2020-05-12 22:52:45 +02:00
<ini name="memory_limit" value="512M" />
2021-10-02 20:53:03 +02:00
<ini name="display_errors" value="1" />
2019-02-23 16:49:38 +01:00
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
2020-05-10 17:11:21 +02:00
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
2019-02-23 16:49:38 +01:00
</whitelist>
</filter>
2019-10-20 14:35:19 +02:00
<extensions>
<extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension"/>
</extensions>
2019-02-23 16:49:38 +01:00
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
</phpunit>