shlink/phpunit.xml.dist

31 lines
1.0 KiB
Plaintext
Raw Normal View History

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/9.4/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>
<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>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./module/*/src</directory>
</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>
</exclude>
</coverage>
2016-04-10 02:38:07 -05:00
</phpunit>