123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <?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"
- beStrictAboutTestsThatDoNotTestAnything="true"
- beStrictAboutTodoAnnotatedTests="true"
- bootstrap="./vendor/autoload.php"
- colors="true"
- columns="max"
- convertErrorsToExceptions="true"
- convertNoticesToExceptions="true"
- convertWarningsToExceptions="true"
- defaultTimeLimit="10"
- enforceTimeLimit="true"
- failOnWarning="true"
- processIsolation="false"
- stopOnFailure="false"
- timeoutForSmallTests="10"
- timeoutForMediumTests="20"
- timeoutForLargeTests="30"
- verbose="false"
- >
- <testsuites>
- <testsuite name="all">
- <directory>./tests</directory>
- </testsuite>
- <testsuite name="coverage">
- <directory>./tests</directory>
- <exclude>./tests/AutoReview</exclude>
- <exclude>./tests/Smoke</exclude>
- </testsuite>
- </testsuites>
- <filter>
- <whitelist>
- <directory>./src</directory>
- </whitelist>
- </filter>
- <listeners>
- <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
- </listeners>
- <php>
- <ini name="zend.enable_gc" value="0"/>
- <ini name="memory_limit" value="1G"/>
- <env name="FAST_LINT_TEST_CASES" value="0"/>
- <env name="SKIP_LINT_TEST_CASES" value="0"/>
- <env name="PHP_CS_FIXER_TEST_ALLOW_SKIPPING_SMOKE_TESTS" value="1"/>
- <env name="PHP_CS_FIXER_TEST_USE_LEGACY_TOKENIZER" value="0"/>
- </php>
- </phpunit>
|