phpunit.xml.dist 975 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. beStrictAboutTestsThatDoNotTestAnything="true"
  5. beStrictAboutOutputDuringTests="true"
  6. bootstrap="vendor/autoload.php"
  7. colors="true"
  8. convertDeprecationsToExceptions="true"
  9. convertErrorsToExceptions="true"
  10. convertNoticesToExceptions="true"
  11. convertWarningsToExceptions="true"
  12. failOnRisky="true"
  13. failOnWarning="false"
  14. processIsolation="false"
  15. stopOnError="false"
  16. stopOnFailure="false"
  17. verbose="true"
  18. >
  19. <testsuites>
  20. <testsuite name="PHP Dotenv Test Suite">
  21. <directory suffix="Test.php">./tests</directory>
  22. </testsuite>
  23. </testsuites>
  24. <filter>
  25. <whitelist processUncoveredFilesFromWhitelist="true">
  26. <directory suffix=".php">./src</directory>
  27. </whitelist>
  28. </filter>
  29. </phpunit>