phpunit.xml 397 B

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