123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0"?>
- <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.5/phpunit.xsd"
- colors="true"
- bootstrap="../../../../../dev/tests/integration/framework/bootstrap.php">
- <testsuites>
- <testsuite name="Temando Shipping Integration Tests">
- <directory>.</directory>
- </testsuite>
- </testsuites>
- <php>
- <includePath>.</includePath>
- <includePath>../../../../../dev/tests/integration/</includePath>
- <includePath>../../../../../dev/tests/integration/testsuite/</includePath>
- <ini name="date.timezone" value="Europe/Berlin" />
- <ini name="xdebug.max_nesting_level" value="200" />
- <const name="TESTS_INSTALL_CONFIG_FILE" value="etc/install-config-mysql.php"/>
- <const name="TESTS_GLOBAL_CONFIG_FILE" value="etc/config-global.php"/>
- <const name="TESTS_GLOBAL_CONFIG_DIR" value="../../../app/etc"/>
- <const name="TESTS_CLEANUP" value="disabled" />
- <const name="TESTS_MAGENTO_MODE" value="developer" />
- </php>
- <filter>
- <whitelist>
- <directory suffix=".php">../../</directory>
- <exclude>
- <directory>../../Test/</directory>
- <directory>../../Setup/</directory>
- <file>../../registration.php</file>
- </exclude>
- </whitelist>
- </filter>
- <logging>
- <log type="coverage-html" target="../../build/reports/integration/coverage/html"/>
- <log type="coverage-clover" target="../../build/reports/integration/coverage/clover.xml"/>
- <log type="junit" target="../../build/reports/integration/coverage/junit.xml"/>
- </logging>
- <listeners>
- <listener class="Magento\TestFramework\Event\PhpUnit"/>
- <listener class="Magento\TestFramework\ErrorLog\Listener"/>
- </listeners>
- </phpunit>
|