phpunit.xml 882 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnFailure="true"
  11. syntaxCheck="false">
  12. <testsuites>
  13. <testsuite name="Versionable Suite">
  14. <directory>tests/</directory>
  15. <exclude>
  16. <file>src/Mpociot/ApiDoc/ApiDocGeneratorServiceProvider.php</file>
  17. <file>src/resources/views/documentarian.blade.php</file>
  18. </exclude>
  19. </testsuite>
  20. </testsuites>
  21. <filter>
  22. <whitelist>
  23. <directory suffix=".php">src/Mpociot/</directory>
  24. </whitelist>
  25. </filter>
  26. </phpunit>