phpunit.xml.dist 653 B

12345678910111213
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
  3. <testsuites>
  4. <testsuite name="Unit Tests">
  5. <directory suffix=".php">./tests/Unit/</directory>
  6. </testsuite>
  7. </testsuites>
  8. <source>
  9. <include>
  10. <directory suffix=".php">src</directory>
  11. </include>
  12. </source>
  13. </phpunit>