21 lines
628 B
XML
21 lines
628 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit bootstrap="../vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="µlogger test suite">
|
|
<directory suffix=".php">tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">..</directory>
|
|
<exclude>
|
|
<directory suffix=".php">../.tests</directory>
|
|
<directory suffix=".php">../vendor</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
|
</logging>
|
|
</phpunit>
|