25 lines
603 B
XML
Executable File
25 lines
603 B
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
colors="true"
|
|
bootstrap="vendor/autoload.php"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite>
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-text" target="php://stdout"/>
|
|
</logging>
|
|
</phpunit>
|
|
|