phpunit.xml 802 B

123456789101112131415161718192021
  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/6.5/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
  6. forceCoversAnnotation="true"
  7. beStrictAboutCoversAnnotation="true"
  8. beStrictAboutOutputDuringTests="true"
  9. beStrictAboutTodoAnnotatedTests="true"
  10. colors="true"
  11. verbose="true">
  12. <testsuite name="default">
  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>