phpunit.xml.dist 683 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. processIsolation="false"
  8. stopOnFailure="false"
  9. syntaxCheck="false"
  10. bootstrap="tests/bootstrap.php"
  11. >
  12. <testsuites>
  13. <testsuite name="JMS Serializer Test Suite">
  14. <directory>./tests</directory>
  15. </testsuite>
  16. </testsuites>
  17. <groups>
  18. <exclude>
  19. <group>performance</group>
  20. </exclude>
  21. </groups>
  22. </phpunit>