phpunit.xml 900 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. cacheDirectory=".phpunit.cache"
  6. executionOrder="depends,defects"
  7. requireCoverageMetadata="false"
  8. beStrictAboutCoverageMetadata="true"
  9. beStrictAboutOutputDuringTests="true"
  10. failOnRisky="false"
  11. failOnWarning="false">
  12. <testsuites>
  13. <testsuite name="default">
  14. <directory>tests</directory>
  15. </testsuite>
  16. </testsuites>
  17. <source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
  18. <include>
  19. <directory>src</directory>
  20. </include>
  21. </source>
  22. <php>
  23. <cookie name="testKey" value="testValue"/>
  24. </php>
  25. </phpunit>