1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" colors="true" bootstrap="./tests/bootstrap.php">
<coverage includeUncoveredFiles="true">
<include>
<directory suffix=".php">src/</directory>
<directory suffix=".php">tests/</directory>
</include>
<report>
<clover outputFile="coverage/logs/clover.xml"/>
<html outputDirectory="coverage" lowUpperBound="30" highLowerBound="80"/>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
</report>
</coverage>
<testsuites>
<testsuite name="AllTests">
<directory>tests</directory>
</testsuite>
<testsuite name="NoNetworkTests">
<directory>tests</directory>
<exclude>tests/Application/ThumbnailerTest.php</exclude>
</testsuite>
</testsuites>
<logging/>
<php>
<const name="WEB_SERVER_HOST" value="localhost"/>
<const name="WEB_SERVER_PORT" value="8081"/>
<const name="WEB_SERVER_DOCROOT" value="./tests/public"/>
</php>
</phpunit>
|