phpunit.xml.dist 588 B

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