chill-skeleton-basic/phpunit.xml.dist

40 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-07-11 17:27:00 +00: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"
bootstrap="tests/bootstrap.php"
2023-09-05 10:53:11 +00:00
convertDeprecationsToExceptions="false"
2022-07-11 17:27:00 +00:00
>
<php>
2023-09-05 10:53:11 +00:00
<ini name="display_errors" value="1" />
2022-07-11 17:27:00 +00:00
<ini name="error_reporting" value="-1" />
<server name="APP_ENV" value="test" force="true" />
<server name="SHELL_VERBOSITY" value="-1" />
2023-09-05 10:53:11 +00:00
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
2022-07-11 17:27:00 +00:00
</php>
<testsuites>
2023-09-05 10:53:11 +00:00
<testsuite name="Project Test Suite">
<directory>tests</directory>
2022-07-11 17:27:00 +00:00
</testsuite>
</testsuites>
2023-09-05 10:53:11 +00:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
2022-07-11 17:27:00 +00:00
<listeners>
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
</listeners>
2023-09-05 10:53:11 +00:00
<!-- Uncomment when adding extensions
2023-09-05 10:53:11 +00:00
<extensions>
</extensions>
2022-07-11 17:27:00 +00:00
</phpunit>