1
0
mirror of synced 2025-01-18 17:01:41 +03:00
woocommerce-module/phpunit.xml.dist
2020-12-15 12:05:43 +03:00

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>