2018-01-07 22:45:05 +03:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
2019-02-04 21:43:21 +03:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-01-25 00:56:43 +03:00
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2019-02-04 21:43:21 +03:00
|
|
|
bootstrap="./vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
>
|
2016-04-10 10:38:07 +03:00
|
|
|
<testsuites>
|
2016-07-19 19:05:06 +03:00
|
|
|
<testsuite name="Core">
|
|
|
|
<directory>./module/Core/test</directory>
|
2016-04-10 10:38:07 +03:00
|
|
|
</testsuite>
|
2016-07-19 19:19:05 +03:00
|
|
|
<testsuite name="Rest">
|
|
|
|
<directory>./module/Rest/test</directory>
|
|
|
|
</testsuite>
|
2016-07-19 19:28:21 +03:00
|
|
|
<testsuite name="CLI">
|
|
|
|
<directory>./module/CLI/test</directory>
|
|
|
|
</testsuite>
|
2016-04-10 10:38:07 +03:00
|
|
|
</testsuites>
|
|
|
|
|
2020-11-02 14:07:45 +03:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
2018-10-06 10:40:18 +03:00
|
|
|
<directory suffix=".php">./module/*/src</directory>
|
2020-11-02 14:07:45 +03:00
|
|
|
</include>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">./module/Core/src/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/Core/src/**/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/Core/src/**/**/Repository</directory>
|
2021-01-02 19:14:42 +03:00
|
|
|
<directory suffix=".php">./module/Core/src/Spec</directory>
|
|
|
|
<directory suffix=".php">./module/Core/src/**/Spec</directory>
|
|
|
|
<directory suffix=".php">./module/Core/src/**/**/Spec</directory>
|
2020-11-02 14:07:45 +03:00
|
|
|
</exclude>
|
|
|
|
</coverage>
|
2016-04-10 10:38:07 +03:00
|
|
|
</phpunit>
|