2018-04-27 11:19:02 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
2020-02-25 14:40:36 +03:00
|
|
|
bootstrap="tests/bootstrap.php"
|
2018-04-27 11:19:02 +03:00
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
verbose="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
2020-12-15 12:05:43 +03:00
|
|
|
<testsuite name="RetailCRM WooCommerce Test Suite">
|
2020-02-25 13:45:17 +03:00
|
|
|
<directory suffix=".php">tests</directory>
|
2018-04-27 11:19:02 +03:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
2020-03-02 18:02:40 +03:00
|
|
|
<directory suffix=".php">src</directory>
|
2018-04-27 11:19:02 +03:00
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">src/include/api</directory>
|
2020-03-02 18:02:40 +03:00
|
|
|
<directory>src/config</directory>
|
|
|
|
<directory>src/languages</directory>
|
|
|
|
<file>src/readme.txt</file>
|
2018-04-27 11:19:02 +03:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2020-03-02 18:02:40 +03:00
|
|
|
<logging>
|
|
|
|
<log type="coverage-clover" target="coverage.xml"/>
|
|
|
|
</logging>
|
2018-04-27 11:19:02 +03:00
|
|
|
</phpunit>
|