phpunit.xml 453 B

1234567891011121314
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="vendor/autoload.php"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. stopOnFailure="false"
  7. cacheResult="false"
  8. colors="true">
  9. <testsuites>
  10. <testsuite name="Tests">
  11. <directory suffix="Test.php">./tests</directory>
  12. </testsuite>
  13. </testsuites>
  14. </phpunit>