|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + ~ Copyright © Reach Digital (https://www.reachdigital.io/) |
| 4 | + ~ See LICENSE.txt for license details. |
| 5 | + --> |
| 6 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 7 | + xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.2/phpunit.xsd" |
| 8 | + colors="true" |
| 9 | + beStrictAboutTestsThatDoNotTestAnything="false" |
| 10 | + bootstrap="./framework/bootstrap.php" |
| 11 | + stderr="true" |
| 12 | +> |
| 13 | + <!-- Test suites definition --> |
| 14 | + <testsuites> |
| 15 | + <testsuite name="IntegrationTests"> |
| 16 | + <directory>../../../vendor/rocketweb/module-cms-import-export/Test/Integration</directory> |
| 17 | + </testsuite> |
| 18 | + </testsuites> |
| 19 | + |
| 20 | + <!-- PHP INI settings and constants definition --> |
| 21 | + <php> |
| 22 | + <includePath>.</includePath> |
| 23 | + <includePath>testsuite</includePath> |
| 24 | + <ini name="date.timezone" value="America/Los_Angeles"/> |
| 25 | + <ini name="xdebug.max_nesting_level" value="200"/> |
| 26 | + <ini name="memory_limit" value="-1"/> |
| 27 | + <const name="TESTS_INSTALL_CONFIG_FILE" value="etc/install-config-mysql.php"/> |
| 28 | + <const name="TESTS_POST_INSTALL_SETUP_COMMAND_CONFIG_FILE" value="etc/post-install-setup-command-config.php"/> |
| 29 | + <const name="TESTS_GLOBAL_CONFIG_FILE" value="etc/config-global.php"/> |
| 30 | + <const name="TESTS_GLOBAL_CONFIG_DIR" value="../../../app/etc"/> |
| 31 | + <const name="TESTS_CLEANUP" value="enabled"/> |
| 32 | + <const name="TESTS_MEM_USAGE_LIMIT" value="8G"/> |
| 33 | + <const name="TESTS_MEM_LEAK_LIMIT" value="0"/> |
| 34 | + <const name="TESTS_EXTRA_VERBOSE_LOG" value="1"/> |
| 35 | + <const name="TESTS_MAGENTO_MODE" value="developer"/> |
| 36 | + <const name="TESTS_ERROR_LOG_LISTENER_LEVEL" value="-1"/> |
| 37 | + </php> |
| 38 | + <!-- Test listeners --> |
| 39 | + <listeners> |
| 40 | + <listener class="Magento\TestFramework\Event\PhpUnit"/> |
| 41 | + <listener class="Magento\TestFramework\ErrorLog\Listener"/> |
| 42 | + </listeners> |
| 43 | +</phpunit> |
0 commit comments