free-chevereto/app/phpunit-report.xml
2022-11-30 12:33:23 +00:00

31 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
verbose="true"
cacheResult="false"
failOnRisky="true"
failOnWarning="true"
testdox="true">
<php>
<const name="PHPUNIT_CHEVERETO_TESTSUITE" value="true"/>
</php>
<testsuites>
<testsuite name="Chevereto unit tests">
<directory suffix="Test.php">tests/Unit/</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage" processUncoveredFiles="true" ignoreDeprecatedCodeUnits="true">
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<directory suffix=".php">src/Components/Legacy/</directory>
<directory suffix=".php">src/Components/Legacy/**/</directory>
<directory suffix="workflow.php">src/</directory>
</exclude>
<report>
<clover outputFile="build/coverage/clover.xml"/>
<html outputDirectory="build/coverage/html" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>