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"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
|
|
|
|
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>
|
2019-08-11 12:38:46 -05:00
|
|
|
<testsuite name="PreviewGenerator">
|
|
|
|
<directory>./module/PreviewGenerator/test</directory>
|
|
|
|
</testsuite>
|
2016-04-10 02:38:07 -05:00
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2018-10-06 02:40:18 -05:00
|
|
|
<directory suffix=".php">./module/*/src</directory>
|
2016-07-30 16:07:44 -05:00
|
|
|
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">./module/Core/src/Repository</directory>
|
|
|
|
</exclude>
|
2016-04-10 02:38:07 -05:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|