shlink/phpunit.xml.dist

26 lines
914 B
Text
Raw Normal View History

2016-04-10 10:38:07 +03:00
<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>
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-04-10 10:38:07 +03:00
</whitelist>
</filter>
</phpunit>