Sin descripción

phpunit.xml 787B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.3/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. backupGlobals="false"
  6. backupStaticAttributes="false"
  7. beStrictAboutOutputDuringTests="true"
  8. beStrictAboutTestsThatDoNotTestAnything="true"
  9. beStrictAboutTodoAnnotatedTests="true"
  10. checkForUnintentionallyCoveredCode="true"
  11. verbose="true">
  12. <testsuite>
  13. <directory suffix="Test.php">tests</directory>
  14. </testsuite>
  15. <filter>
  16. <whitelist processUncoveredFilesFromWhitelist="true">
  17. <directory suffix=".php">src</directory>
  18. </whitelist>
  19. </filter>
  20. </phpunit>