phpunit.xml.dist 857 B

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