phpunit.xml.dist 692 B

1234567891011121314151617181920212223242526
  1. <phpunit
  2. backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="./tests/bootstrap.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. charset="UTF-8"
  10. processIsolation="false">
  11. <testsuites>
  12. <testsuite name="Test Suite">
  13. <directory suffix=".php">./tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">./Cmfcmf/</directory>
  19. <exclude>
  20. <directory suffix=".php">./Examples/</directory>
  21. </exclude>
  22. </whitelist>
  23. </filter>
  24. </phpunit>