12345678910111213141516171819202122232425262728293031323334 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit backupGlobals="false"
- backupStaticAttributes="false"
- bootstrap="./vendor/autoload.php"
- colors="true"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- syntaxCheck="false"
- >
- <testsuites>
- <testsuite>
- <directory>./tests</directory>
- <exclude>./tests/Standalone</exclude>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory>./src</directory>
- <exclude>
- <directory>./src/Resources</directory>
- </exclude>
- </whitelist>
- </filter>
- <php>
- <ini name="zend.enable_gc" value="0"/>
- <env name="SKIP_LINT_TEST_CASES" value="0"/>
- </php>
- </phpunit>
|