shlink/phpunit-cli.xml
2022-02-13 12:20:02 +01:00

20 lines
631 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_cli_tests.php"
colors="true"
>
<testsuites>
<testsuite name="Shlink CLI tests">
<directory>./module/*/test-cli</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./module/CLI/src</directory>
<directory suffix=".php">./module/Core/src</directory>
</include>
</coverage>
</phpunit>