1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <!--
3+ /**
4+ * Copyright © Magento, Inc. All rights reserved.
5+ * See COPYING.txt for license details.
6+ */
7+ -->
8+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
9+ xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/6.2/phpunit.xsd"
10+ colors =" true"
11+ beStrictAboutTestsThatDoNotTestAnything =" false"
12+ bootstrap =" ./framework/bootstrap.php"
13+ stderr =" true"
14+ >
15+ <!-- Test suites definition -->
16+ <testsuites >
17+ <testsuite name =" SessionUnblocker Integration Tests" >
18+ <directory suffix =" Test.php" >../../../vendor/integer-net/magento2-session-unblocker/Test/Integration</directory >
19+ </testsuite >
20+ </testsuites >
21+ <!-- Code coverage filters -->
22+ <filter >
23+ <whitelist addUncoveredFilesFromWhiteList =" true" >
24+ <directory suffix =" .php" >../../../vendor/integer-net/magento2-session-unblocker</directory >
25+ <exclude >
26+ <directory >../../../vendor/integer-net/magento2-session-unblocker/Test</directory >
27+ </exclude >
28+ </whitelist >
29+ </filter >
30+ <!-- PHP INI settings and constants definition -->
31+ <php >
32+ <includePath >.</includePath >
33+ <includePath >testsuite</includePath >
34+ <ini name =" date.timezone" value =" America/Los_Angeles" />
35+ <ini name =" xdebug.max_nesting_level" value =" 200" />
36+ <!-- Local XML configuration file ('.dist' extension will be added, if the specified file doesn't exist) -->
37+ <const name =" TESTS_INSTALL_CONFIG_FILE" value =" etc/install-config-mysql.php" />
38+ <!-- Local XML configuration file ('.dist' extension will be added, if the specified file doesn't exist) -->
39+ <const name =" TESTS_GLOBAL_CONFIG_FILE" value =" etc/config-global.php" />
40+ <!-- Semicolon-separated 'glob' patterns, that match global XML configuration files -->
41+ <const name =" TESTS_GLOBAL_CONFIG_DIR" value =" ../../../app/etc" />
42+ <!-- Whether to cleanup the application before running tests or not -->
43+ <!-- <const name="TESTS_CLEANUP" value="enabled"/>-->
44+ <const name =" TESTS_CLEANUP" value =" enabled" />
45+ <!-- Memory usage and estimated leaks thresholds -->
46+ <!-- <const name="TESTS_MEM_USAGE_LIMIT" value="1024M"/>-->
47+ <const name =" TESTS_MEM_LEAK_LIMIT" value =" " />
48+ <!-- Whether to output all CLI commands executed by the bootstrap and tests -->
49+ <!-- <const name="TESTS_EXTRA_VERBOSE_LOG" value="1"/>-->
50+ <!-- Path to Percona Toolkit bin directory -->
51+ <!-- <const name="PERCONA_TOOLKIT_BIN_DIR" value=""/>-->
52+ <!-- CSV Profiler Output file -->
53+ <!-- <const name="TESTS_PROFILER_FILE" value="profiler.csv"/>-->
54+ <!-- Bamboo compatible CSV Profiler Output file name -->
55+ <!-- <const name="TESTS_BAMBOO_PROFILER_FILE" value="profiler.csv"/>-->
56+ <!-- Metrics for Bamboo Profiler Output in PHP file that returns array -->
57+ <!-- <const name="TESTS_BAMBOO_PROFILER_METRICS_FILE" value="../../build/profiler_metrics.php"/>-->
58+ <!-- Whether to output all CLI commands executed by the bootstrap and tests -->
59+ <const name =" TESTS_EXTRA_VERBOSE_LOG" value =" 1" />
60+ <!-- Magento mode for tests execution. Possible values are "default", "developer" and "production". -->
61+ <const name =" TESTS_MAGENTO_MODE" value =" developer" />
62+ <!-- Minimum error log level to listen for. Possible values: -1 ignore all errors, and level constants form http://tools.ietf.org/html/rfc5424 standard -->
63+ <const name =" TESTS_ERROR_LOG_LISTENER_LEVEL" value =" -1" />
64+ <!-- Connection parameters for MongoDB library tests -->
65+ <!-- <const name="MONGODB_CONNECTION_STRING" value="mongodb://localhost:27017"/>-->
66+ <!-- <const name="MONGODB_DATABASE_NAME" value="magento_integration_tests"/>-->
67+ </php >
68+ <!-- Test listeners -->
69+ <listeners >
70+ <listener class =" Magento\TestFramework\Event\PhpUnit" />
71+ <listener class =" Magento\TestFramework\ErrorLog\Listener" />
72+ </listeners >
73+ </phpunit >
0 commit comments