phpunit.xml 402 B

123456789101112
  1. <phpunit bootstrap="./tests/bootstrap.php"
  2. colors="false"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. stopOnFailure="true">
  7. <filter>
  8. <whitelist processUncoveredFilesFromWhitelist="true">
  9. <directory suffix=".php">./src</directory>
  10. </whitelist>
  11. </filter>
  12. </phpunit>