mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
25 lines
914 B
XML
25 lines
914 B
XML
<phpunit bootstrap="./vendor/autoload.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="Common">
|
|
<directory>./module/Common/test</directory>
|
|
</testsuite>
|
|
<testsuite name="Core">
|
|
<directory>./module/Core/test</directory>
|
|
</testsuite>
|
|
<testsuite name="Rest">
|
|
<directory>./module/Rest/test</directory>
|
|
</testsuite>
|
|
<testsuite name="CLI">
|
|
<directory>./module/CLI/test</directory>
|
|
</testsuite>
|
|
</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>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|