mirror of
https://github.com/OPSnet/Logchecker.git
synced 2026-01-17 03:04:36 -05:00
20 lines
628 B
XML
20 lines
628 B
XML
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
|
colors="true"
|
|
bootstrap="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="unit">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
<exclude></exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-html" target="report" />
|
|
</logging>
|
|
</phpunit>
|