phpunit.xml 740 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. beStrictAboutTestsThatDoNotTestAnything="true"
  5. bootstrap="phpunit.php"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false"
  12. syntaxCheck="false"
  13. >
  14. <testsuites>
  15. <testsuite name="Allure PHP API Tests">
  16. <directory>test/Yandex/Allure/Adapter/</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>src/</directory>
  22. </whitelist>
  23. </filter>
  24. </phpunit>