shlink/phpunit.xml.dist

35 lines
1.2 KiB
Text
Raw Normal View History

2018-01-07 22:45:05 +03:00
<?xml version="1.0"?>
<phpunit
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 10:38:07 +03:00
<testsuites>
<testsuite name="Common">
<directory>./module/Common/test</directory>
</testsuite>
<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>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./module/Common/src</directory>
<directory suffix=".php">./module/Core/src</directory>
<directory suffix=".php">./module/Rest/src</directory>
<directory suffix=".php">./module/CLI/src</directory>
2016-07-31 00:07:44 +03:00
<exclude>
<directory suffix=".php">./module/Core/src/Repository</directory>
</exclude>
2016-04-10 10:38:07 +03:00
</whitelist>
</filter>
</phpunit>