mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 21:02:24 +03:00
19 lines
562 B
XML
19 lines
562 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="./config/test/bootstrap_api_tests.php"
|
|
colors="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Shlink API tests">
|
|
<directory>./module/*/test-api</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">./module/*/src</directory>
|
|
</include>
|
|
</coverage>
|
|
</phpunit>
|