mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-21 16:38:37 -06:00
21 lines
631 B
XML
21 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>
|