1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?xml version="1.0" encoding="UTF-8"?>
- <phpunit
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
- backupGlobals="false"
- backupStaticAttributes="false"
- beStrictAboutChangesToGlobalState="true"
- beStrictAboutOutputDuringTests="true"
- beStrictAboutTestSize="true"
- beStrictAboutTestsThatDoNotTestAnything="true"
- beStrictAboutTodoAnnotatedTests="true"
- bootstrap="./vendor/autoload.php"
- colors="true"
- columns="max"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- processIsolation="false"
- stopOnFailure="false"
- verbose="true"
- >
- <testsuites>
- <testsuite>
- <directory>./tests</directory>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory>./src</directory>
- </whitelist>
- </filter>
- <listeners>
- <listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
- <arguments>
- <array>
- <element key="slowThreshold">
- <integer>100</integer>
- </element>
- </array>
- </arguments>
- </listener>
- <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
- </listeners>
- <php>
- <ini name="zend.enable_gc" value="0"/>
- <env name="SKIP_LINT_TEST_CASES" value="0"/>
- <env name="PHP_CS_FIXER_TEST_USE_LEGACY_TOKENIZER" value="0"/>
- </php>
- </phpunit>
|