2022-02-13 05:20:02 -06:00
|
|
|
<?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_cli_tests.php"
|
|
|
|
colors="true"
|
2023-02-09 02:32:38 -06:00
|
|
|
cacheDirectory="build/.phpunit/cli-tests.cache"
|
2022-02-13 05:20:02 -06:00
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Shlink CLI tests">
|
|
|
|
<directory>./module/*/test-cli</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2023-02-09 02:32:38 -06:00
|
|
|
<coverage>
|
2022-02-13 05:20:02 -06:00
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./module/CLI/src</directory>
|
|
|
|
<directory suffix=".php">./module/Core/src</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
</phpunit>
|