説明なし

phpunit.xml 826B

12345678910111213141516171819202122232425
  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/6.1/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. forceCoversAnnotation="true"
  6. beStrictAboutCoversAnnotation="true"
  7. beStrictAboutOutputDuringTests="true"
  8. beStrictAboutTodoAnnotatedTests="true"
  9. verbose="true">
  10. <testsuite>
  11. <directory suffix="Test.php">tests</directory>
  12. </testsuite>
  13. <php>
  14. <const name="GLOBALSTATE_TESTSUITE" value="true"/>
  15. <ini name="date.timezone" value="Etc/UTC"/>
  16. </php>
  17. <filter>
  18. <whitelist processUncoveredFilesFromWhitelist="true">
  19. <directory suffix=".php">src</directory>
  20. </whitelist>
  21. </filter>
  22. </phpunit>