mirror of
https://github.com/retailcrm/prestashop-module.git
synced 2025-03-01 19:03:14 +03:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit
|
||
|
bootstrap="tests/phpunit/bootstrap.php"
|
||
|
backupGlobals="false"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
verbose="true"
|
||
|
processIsolation="false"
|
||
|
stopOnFailure="false"
|
||
|
syntaxCheck="true"
|
||
|
>
|
||
|
<testsuites>
|
||
|
<testsuite name="Retailcrm PrestaShop Test Suite">
|
||
|
<directory>tests/phpunit</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<filter>
|
||
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
||
|
<directory suffix=".php">retailcrm</directory>
|
||
|
<exclude>
|
||
|
<directory suffix=".php">retailcrm/translations</directory>
|
||
|
<directory suffix=".php">retailcrm/job</directory>
|
||
|
<file>bootstrap.php</file>
|
||
|
<file>index.php</file>
|
||
|
<file>logo.gif</file>
|
||
|
<file>logo.png</file>
|
||
|
<file>objects.xml</file>
|
||
|
</exclude>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|