2018-04-17 23:58:51 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="https://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>
|
2022-09-20 05:07:57 +05:30
|
|
|
<testsuite name="all">
|
2018-04-17 23:58:51 +05:30
|
|
|
<directory>./tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2022-09-20 05:07:57 +05:30
|
|
|
<coverage>
|
|
|
|
<include>
|
2018-04-17 23:58:51 +05:30
|
|
|
<directory>./src</directory>
|
2022-09-20 05:07:57 +05:30
|
|
|
</include>
|
|
|
|
</coverage>
|
2018-04-17 23:58:51 +05:30
|
|
|
|
|
|
|
<php>
|
|
|
|
<ini name="zend.enable_gc" value="0"/>
|
|
|
|
<ini name="memory_limit" value="1G"/>
|
|
|
|
</php>
|
|
|
|
</phpunit>
|