phpunit.xml.dist 930 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. backupGlobals = "false"
  4. backupStaticAttributes = "false"
  5. colors = "true"
  6. convertErrorsToExceptions = "true"
  7. convertNoticesToExceptions = "true"
  8. convertWarningsToExceptions = "true"
  9. processIsolation = "false"
  10. stopOnFailure = "false"
  11. syntaxCheck = "false"
  12. bootstrap = "tests/bootstrap.php"
  13. >
  14. <php>
  15. <ini name="serialize_precision" value="14"/>
  16. </php>
  17. <testsuites>
  18. <testsuite name="JMS Serializer Test Suite">
  19. <directory>./tests</directory>
  20. </testsuite>
  21. </testsuites>
  22. <groups>
  23. <exclude>
  24. <group>performance</group>
  25. </exclude>
  26. </groups>
  27. <filter>
  28. <whitelist>
  29. <directory>src</directory>
  30. </whitelist>
  31. </filter>
  32. </phpunit>