phpunit.xml.dist 959 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. backupGlobals="false"
  4. backupStaticAttributes="false"
  5. beStrictAboutTestsThatDoNotTestAnything="false"
  6. bootstrap="tests/bootstrap.php"
  7. colors="true"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. processIsolation="false"
  12. stopOnError="false"
  13. stopOnFailure="false"
  14. verbose="true"
  15. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
  16. >
  17. <coverage processUncoveredFiles="true">
  18. <include>
  19. <directory suffix=".php">./src/think</directory>
  20. </include>
  21. </coverage>
  22. <testsuites>
  23. <testsuite name="ThinkPHP Test Suite">
  24. <directory suffix="Test.php">./tests</directory>
  25. </testsuite>
  26. </testsuites>
  27. </phpunit>