18 lines
505 B
XML
18 lines
505 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<phpunit bootstrap="test/bootstrap.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"/>
|
|
</logging>
|
|
</phpunit>
|