phpunit.xml.dist 515 B

123456789101112131415161718
  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/10.1/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. >
  7. <testsuites>
  8. <testsuite name="Test Suite">
  9. <directory suffix="Test.php">./tests</directory>
  10. </testsuite>
  11. </testsuites>
  12. <coverage/>
  13. <source>
  14. <include>
  15. <directory suffix=".php">./src</directory>
  16. </include>
  17. </source>
  18. </phpunit>