phpunit.xml.dist 1009 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
  5. backupGlobals="false"
  6. colors="true"
  7. bootstrap="vendor/autoload.php"
  8. >
  9. <php>
  10. <ini name="error_reporting" value="-1" />
  11. <env name="KERNEL_CLASS" value="App\Kernel" />
  12. <env name="APP_ENV" value="test" />
  13. <env name="APP_DEBUG" value="1" />
  14. <env name="APP_SECRET" value="s$cretf0rt3st" />
  15. <env name="SHELL_VERBOSITY" value="-1" />
  16. <!-- define your env variables for the test env here -->
  17. </php>
  18. <testsuites>
  19. <testsuite name="Project Test Suite">
  20. <directory>tests/</directory>
  21. </testsuite>
  22. </testsuites>
  23. <filter>
  24. <whitelist>
  25. <directory>./src/</directory>
  26. </whitelist>
  27. </filter>
  28. </phpunit>