Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

phpunit.xml 672 B

3 anni fa
123456789101112131415161718192021222324
  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. >
  12. <php>
  13. <ini name="intl.default_locale" value="en"/>
  14. <ini name="intl.error_level" value="0"/>
  15. <ini name="memory_limit" value="-1"/>
  16. </php>
  17. <testsuites>
  18. <testsuite name="Test Suite">
  19. <directory>./</directory>
  20. </testsuite>
  21. </testsuites>
  22. </phpunit>