Drupal investigation

phpunit.xml.dist 668B

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