mirror of
https://github.com/elyby/php-code-style.git
synced 2024-11-06 08:11:08 +05:30
31 lines
769 B
XML
31 lines
769 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
beStrictAboutChangesToGlobalState="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
columns="max"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="all">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage>
|
|
<include>
|
|
<directory>./src</directory>
|
|
</include>
|
|
</coverage>
|
|
|
|
<php>
|
|
<ini name="zend.enable_gc" value="0"/>
|
|
<ini name="memory_limit" value="1G"/>
|
|
</php>
|
|
</phpunit>
|