18 lines
537 B
XML
18 lines
537 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<phpunit bootstrap="./vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="Statify Blacklist TestSuite">
|
|
<directory suffix="-test.php">./test/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./inc/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="tests-clover.xml"/>
|
|
<log type="junit" target="tests-junit.xml" logIncompleteSkipped="false"/>
|
|
</logging>
|
|
</phpunit>
|