phpunit.xml 493 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="tests/bootstrap.php"
  3. backupGlobals="false"
  4. backupStaticAttributes="false"
  5. verbose="true"
  6. colors="true"
  7. convertErrorsToExceptions="true"
  8. convertNoticesToExceptions="true"
  9. convertWarningsToExceptions="true"
  10. processIsolation="false"
  11. stopOnFailure="false">
  12. <testsuite name="Testsuite">
  13. <directory>./tests/</directory>
  14. </testsuite>
  15. </phpunit>