32 lines
1012 B
XML
32 lines
1012 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
backupGlobals="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
verbose="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Retailcrm WooCommerce Test Suite">
|
|
<directory suffix=".php">tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">src</directory>
|
|
<exclude>
|
|
<directory suffix=".php">src/include/api</directory>
|
|
<directory>src/config</directory>
|
|
<directory>src/languages</directory>
|
|
<file>src/readme.txt</file>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log type="coverage-clover" target="coverage.xml"/>
|
|
</logging>
|
|
</phpunit> |