phpunit.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. cacheResult="true"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false">
  12. <testsuites>
  13. <testsuite name="Generator Tests">
  14. <file>tests/Unit/DingoGeneratorTest.php</file>
  15. <file>tests/Unit/LaravelGeneratorTest.php</file>
  16. <file>tests/Unit/GeneratorPluginSystemTest.php</file>
  17. </testsuite>
  18. <testsuite name="RouteMatcher Tests">
  19. <file>tests/Unit/RouteMatcherDingoTest.php</file>
  20. <file>tests/Unit/RouteMatcherTest.php</file>
  21. </testsuite>
  22. <testsuite name="Full Test">
  23. <file>tests/GenerateDocumentationTest.php</file>
  24. </testsuite>
  25. <testsuite name="Postman Collection Test">
  26. <file>tests/Unit/PostmanCollectionWriterTest.php</file>
  27. </testsuite>
  28. </testsuites>
  29. <filter>
  30. <whitelist>
  31. <directory suffix=".php">src/</directory>
  32. <exclude>
  33. <file>src/ScribeServiceProvider.php</file>
  34. <file>resources/views/pastel.blade.php</file>
  35. </exclude>
  36. </whitelist>
  37. </filter>
  38. </phpunit>