phpunit.xml.dist 1.0KB

123456789101112131415161718192021222324252627282930313233343536
  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="AsseticBundle Test Suite">
  15. <directory>./Tests/</directory>
  16. </testsuite>
  17. </testsuites>
  18. <php>
  19. <!-- <server name="SYMFONY" value="/path/to/symfony/src" /> -->
  20. <!-- <server name="ASSETIC" value="/path/to/assetic/src" /> -->
  21. <!-- <server name="TWIG" value="/path/to/twig/lib" /> -->
  22. </php>
  23. <filter>
  24. <whitelist>
  25. <directory>./</directory>
  26. <exclude>
  27. <directory>./Resources</directory>
  28. <directory>./Tests</directory>
  29. </exclude>
  30. </whitelist>
  31. </filter>
  32. </phpunit>