2018-01-07 13:45:05 -06:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
2019-01-26 02:09:49 -06:00
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-12-28 03:43:13 -06:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
2019-01-26 02:09:49 -06:00
|
|
|
bootstrap="./config/test/bootstrap_db_tests.php"
|
|
|
|
colors="true"
|
|
|
|
>
|
2017-10-23 04:20:55 -05:00
|
|
|
<testsuites>
|
2019-01-20 14:49:07 -06:00
|
|
|
<testsuite name="Shlink database tests">
|
|
|
|
<directory>./module/*/test-db</directory>
|
2017-10-23 04:20:55 -05:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">./module/*/src/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/**/Repository</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|