2019-01-26 03:19:20 -06:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-01-24 15:56:43 -06:00
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2019-01-26 03:19:20 -06:00
|
|
|
bootstrap="./config/test/bootstrap_api_tests.php"
|
|
|
|
colors="true"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Shlink API tests">
|
|
|
|
<directory>./module/*/test-api</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2020-11-02 05:07:45 -06:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
2019-01-26 03:19:20 -06:00
|
|
|
<directory suffix=".php">./module/*/src</directory>
|
2020-11-02 05:07:45 -06:00
|
|
|
</include>
|
|
|
|
</coverage>
|
2019-01-26 03:19:20 -06:00
|
|
|
</phpunit>
|