You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
735 B
XML
29 lines
735 B
XML
<?xml version="1.0"?>
|
|
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Includes">
|
|
<directory suffix="_test.php">./tests/phpunit/includes/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src/</directory>
|
|
<!-- <file>/path/to/file</file> -->
|
|
<exclude>
|
|
<directory suffix=".php">src/views</directory>
|
|
<!-- <file>/path/to/file</file> -->
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|