mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-06 00:04:41 +05:30
40 lines
1.0 KiB
XML
40 lines
1.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
xmlns:xsi="https://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>
|
|
|
|
<php>
|
|
<ini name="zend.enable_gc" value="0"/>
|
|
<ini name="memory_limit" value="1G"/>
|
|
</php>
|
|
</phpunit>
|