2021-08-10 13:31:11 +03:00
|
|
|
<?xml version="1.0"?>
|
2021-07-13 22:06:40 +03:00
|
|
|
<phpunit
|
2021-08-10 13:31:11 +03:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-07-13 22:06:40 +03:00
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2021-07-26 13:46:02 +03:00
|
|
|
cacheResult="true"
|
|
|
|
cacheResultFile="/tmp/phpunit.cache"
|
2021-08-10 13:31:11 +03:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2021-07-13 22:06:40 +03:00
|
|
|
>
|
2019-03-11 05:04:20 +03:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="integration">
|
|
|
|
<directory>./tests/Integration</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2021-08-10 13:31:11 +03:00
|
|
|
<coverage includeUncoveredFiles="true" processUncoveredFiles="true">
|
|
|
|
<include>
|
2021-07-26 13:46:02 +03:00
|
|
|
<directory suffix=".php">lib</directory>
|
2021-08-10 13:31:11 +03:00
|
|
|
</include>
|
|
|
|
</coverage>
|
2019-03-11 05:04:20 +03:00
|
|
|
</phpunit>
|