phpunit.xml.dist 980 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. DO NOT EDIT THIS FILE!
  4. It's auto-generated by sonata-project/dev-kit package.
  5. -->
  6. <phpunit backupGlobals="false"
  7. backupStaticAttributes="false"
  8. colors="true"
  9. convertErrorsToExceptions="true"
  10. convertNoticesToExceptions="true"
  11. convertWarningsToExceptions="true"
  12. processIsolation="false"
  13. stopOnFailure="false"
  14. syntaxCheck="false"
  15. bootstrap="tests/bootstrap.php"
  16. >
  17. <testsuites>
  18. <testsuite name="Sonata Google Authenticator Test Suite">
  19. <directory suffix="Test.php">./tests/</directory>
  20. </testsuite>
  21. </testsuites>
  22. <listeners>
  23. <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
  24. </listeners>
  25. <filter>
  26. <whitelist>
  27. <directory suffix=".php">./src/</directory>
  28. </whitelist>
  29. </filter>
  30. <php>
  31. <ini name="precision" value="8"/>
  32. </php>
  33. </phpunit>