16 lines
487 B
XML
16 lines
487 B
XML
<?xml version="1.0"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="vendor/autoload.php"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.2/phpunit.xsd"
|
|
cacheDirectory=".phpunit.cache">
|
|
<coverage>
|
|
<report>
|
|
<clover outputFile="coverage.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Default">
|
|
<directory suffix=".php">tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|