phpunit.xml.dist 869 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. beStrictAboutChangesToGlobalState="true"
  6. beStrictAboutCoversAnnotation="true"
  7. beStrictAboutOutputDuringTests="true"
  8. beStrictAboutResourceUsageDuringSmallTests="true"
  9. beStrictAboutTodoAnnotatedTests="true"
  10. enforceTimeLimit="true"
  11. executionOrder="random"
  12. failOnRisky="true"
  13. failOnWarning="true"
  14. colors="true"
  15. verbose="true">
  16. <coverage>
  17. <include>
  18. <directory suffix=".php">./src</directory>
  19. </include>
  20. </coverage>
  21. <testsuite name="LineReader tests">
  22. <directory>tests</directory>
  23. </testsuite>
  24. </phpunit>