Keine Beschreibung

phpunit.xml 557B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false"
  11. bootstrap="./tests/bootstrap.php"
  12. >
  13. <testsuites>
  14. <testsuite name="Dotenv Test Suite">
  15. <directory suffix=".php">tests/Dotenv</directory>
  16. </testsuite>
  17. </testsuites>
  18. </phpunit>