1
0
mirror of synced 2024-11-22 13:26:10 +03:00
bitrix-module/phpunit.xml.dist

34 lines
987 B
Plaintext
Raw Normal View History

2019-02-28 14:45:39 +03:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
2019-02-28 14:45:39 +03:00
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
processIsolation="false"
stopOnFailure="false"
>
<testsuites>
<testsuite name="retailcrm Bitrix module Test Suite">
<directory suffix="Test.php">tests</directory>
2019-02-28 14:45:39 +03:00
</testsuite>
</testsuites>
<filter>
<whitelist>
<exclude>
<directory suffix=".php">retailcrm/translations</directory>
<file>bootstrap.php</file>
<file>index.php</file>
<file>logo.gif</file>
<file>logo.png</file>
<file>objects.xml</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="coverage.xml"/>
</logging>
2019-02-28 16:37:37 +03:00
</phpunit>