You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.3 KiB

  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"
  4. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  5. backupGlobals="false"
  6. colors="true"
  7. bootstrap="tests/bootstrap.php"
  8. convertDeprecationsToExceptions="false"
  9. >
  10. <php>
  11. <ini name="error_reporting" value="-1" />
  12. <server name="APP_ENV" value="test" force="true" />
  13. <server name="SHELL_VERBOSITY" value="-1" />
  14. <server name="SYMFONY_PHPUNIT_REMOVE" value="" />
  15. <server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
  16. </php>
  17. <testsuites>
  18. <testsuite name="Project Test Suite">
  19. <directory>tests</directory>
  20. </testsuite>
  21. </testsuites>
  22. <coverage processUncoveredFiles="true">
  23. <include>
  24. <directory suffix=".php">src</directory>
  25. </include>
  26. </coverage>
  27. <listeners>
  28. <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
  29. </listeners>
  30. <!-- Run `composer require symfony/panther` before enabling this extension -->
  31. <!--
  32. <extensions>
  33. <extension class="Symfony\Component\Panther\ServerExtension" />
  34. </extensions>
  35. -->
  36. </phpunit>