phpunit.xml.dist 599 B

1234567891011121314151617181920
  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. verbose="true"
  12. bootstrap="tests/bootstrap.php"
  13. >
  14. <testsuites>
  15. <testsuite name="Silex Assetic Test Suite">
  16. <directory>./tests/SilexAssetic/</directory>
  17. </testsuite>
  18. </testsuites>
  19. </phpunit>