20 lines
416 B
XML
20 lines
416 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit
|
||
|
colors="true"
|
||
|
stopOnFailure="false"
|
||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
|
>
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
<testsuites>
|
||
|
<testsuite name="PHPKilo">
|
||
|
<directory>tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<logging>
|
||
|
<log type="coverage-html" target="coverage"/>
|
||
|
</logging>
|
||
|
</phpunit>
|