ulogger-server/.tests/phpunit.xml
2021-04-22 19:47:52 +02:00

25 lines
780 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">..</directory>
</include>
<exclude>
<directory suffix=".php">../.tests</directory>
<directory suffix=".php">../vendor</directory>
</exclude>
<report>
<text outputFile="php://stdout" showUncoveredFiles="false"/>
</report>
</coverage>
<testsuites>
<testsuite name="µlogger test suite">
<directory suffix=".php">tests</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<server name="HTTP_HOST" value="http://127.0.0.1"/>
</php>
</phpunit>