17 lines
510 B
XML
17 lines
510 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/9.3/phpunit.xsd">
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="coverage.xml" />
|
|
</logging>
|
|
<testsuites>
|
|
<testsuite name="CosTest">
|
|
<directory>./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|