phpunit.xml.dist 688 B

12345678910111213141516
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="./test/bootstrap.php" colors="true" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
  3. <testsuites>
  4. <testsuite name="Tests">
  5. <directory suffix="Test.php">./test</directory>
  6. </testsuite>
  7. </testsuites>
  8. <php>
  9. <env name="APP_ENV" value="testing" force="true"/>
  10. </php>
  11. <source>
  12. <include>
  13. <directory suffix=".php">./app</directory>
  14. </include>
  15. </source>
  16. </phpunit>