25 行
792 B
XML
25 行
792 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
|
||
|
bootstrap="tests/bootstrap.php"
|
||
|
colors="true"
|
||
|
>
|
||
|
<testsuites>
|
||
|
<testsuite name="unit">
|
||
|
<directory>./tests/Unit</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<php>
|
||
|
<ini name="date.timezone" value="UTC"/>
|
||
|
</php>
|
||
|
<filter>
|
||
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
<logging>
|
||
|
<log type="coverage-html" target="./coverage"/>
|
||
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
||
|
</logging>
|
||
|
</phpunit>
|