2014-08-22 18:22:16 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-08-03 20:28:35 +02:00
|
|
|
<phpunit
|
|
|
|
bootstrap="./vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertDeprecationsToExceptions="true"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="all">
|
|
|
|
<directory>./tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<coverage>
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src/</directory>
|
|
|
|
</include>
|
|
|
|
|
|
|
|
<report>
|
|
|
|
<clover outputFile="build/logs/clover.xml" />
|
|
|
|
<html outputDirectory="build/coverage" />
|
|
|
|
<text outputFile="php://stdout" />
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
|
|
|
|
<logging>
|
|
|
|
<junit outputFile="build/report.junit.xml"/>
|
|
|
|
</logging>
|
|
|
|
</phpunit>
|