phpunit.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="tests/bootstrap.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnError="false"
  11. stopOnFailure="false"
  12. syntaxCheck="true"
  13. verbose="true"
  14. >
  15. <testsuites>
  16. <testsuite name="Laravel Test Suite">
  17. <directory suffix="Test.php">./tests</directory>
  18. </testsuite>
  19. </testsuites>
  20. <logging>
  21. <log type="coverage-html" target="coverage/" lowUpperBound="35" highLowerBound="70"/>
  22. <log type="coverage-clover" target="coverage/coverage-clover.xml" lowUpperBound="35" highLowerBound="70"/>
  23. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  24. </logging>
  25. <filter>
  26. <whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
  27. <directory suffix=".php">./src</directory>
  28. <exclude></exclude>
  29. </whitelist>
  30. </filter>
  31. </phpunit>