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