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"
|
2020-11-02 05:07:45 -06:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.4/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>
|
|
|
|
|
2020-11-02 05:07:45 -06:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
2017-10-23 04:20:55 -05:00
|
|
|
<directory suffix=".php">./module/*/src/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/Repository</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/**/Repository</directory>
|
2021-01-02 10:14:42 -06:00
|
|
|
<directory suffix=".php">./module/*/src/Spec</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/Spec</directory>
|
|
|
|
<directory suffix=".php">./module/*/src/**/**/Spec</directory>
|
2020-11-02 05:07:45 -06:00
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-10-23 04:20:55 -05:00
|
|
|
</phpunit>
|