Licitator 1.0
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.

40 lines
1.4 KiB

5 years ago
  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="https://schema.phpunit.de/6.0/phpunit.xsd"
  5. backupGlobals="false"
  6. colors="true"
  7. bootstrap="vendor/autoload.php"
  8. >
  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="7.5" />
  15. </php>
  16. <logging>
  17. <log type="coverage-clover" target="docs/clover.xml"/>
  18. <log type="junit" target="docs/junit.xml"/>
  19. </logging>
  20. <testsuites>
  21. <testsuite name="Project Test Suite">
  22. <directory>tests</directory>
  23. </testsuite>
  24. </testsuites>
  25. <!-- Add this for PHPUnit 7.5 or higher -->
  26. <!-- <extensions>-->
  27. <!-- <extension class="DAMA\DoctrineTestBundle\PHPUnit\PHPUnitExtension"/>-->
  28. <!-- </extensions>-->
  29. <filter>
  30. <whitelist>
  31. <directory>src</directory>
  32. </whitelist>
  33. </filter>
  34. <listeners>
  35. <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
  36. <listener class="Symfony\Bridge\PhpUnit\CoverageListener" />
  37. </listeners>
  38. </phpunit>