2014-11-06 02:44:52 +03:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-01-09 15:23:50 +03:00
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="phpunit.xsd"
|
|
|
|
bootstrap="./tests/bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
verbose="true"
|
|
|
|
processIsolation="false"
|
2016-04-14 23:11:51 +03:00
|
|
|
stopOnFailure="false">
|
2014-11-06 02:44:52 +03:00
|
|
|
|
|
|
|
<!-- Dummy values used to provide credentials. No need to change these. -->
|
|
|
|
<php>
|
2017-06-22 00:55:08 +03:00
|
|
|
<server name="CRM_API_URL" value="https://demo.retailcrm.ru" />
|
2016-04-14 22:40:33 +03:00
|
|
|
<server name="CRM_API_KEY" value="nSBFWecViONG5c96wUQQgZzHkilTnaa6" />
|
2017-06-22 00:55:08 +03:00
|
|
|
<server name="CRM_API_VERSION" value="v5" />
|
2016-07-22 01:01:47 +03:00
|
|
|
<server name="CRM_USER_ID" value="1" />
|
2014-11-06 02:44:52 +03:00
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="RetailCrm">
|
|
|
|
<directory>tests/RetailCrm/Tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">./src/RetailCrm</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|