phpunit.xml.dist 954 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
  3. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true" bootstrap="tests/bootstrap.php">
  4. <coverage processUncoveredFiles="true">
  5. <include>
  6. <directory suffix=".php">src</directory>
  7. </include>
  8. </coverage>
  9. <php>
  10. <ini name="error_reporting" value="-1"/>
  11. <server name="APP_ENV" value="test" force="true"/>
  12. <server name="SHELL_VERBOSITY" value="-1"/>
  13. <server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
  14. <server name="SYMFONY_PHPUNIT_VERSION" value="9.5"/>
  15. </php>
  16. <testsuites>
  17. <testsuite name="Project Test Suite">
  18. <directory>tests</directory>
  19. </testsuite>
  20. </testsuites>
  21. <listeners>
  22. <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
  23. </listeners>
  24. </phpunit>