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