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 =" GlobalCustomLayout Integration Tests" >
18
+ <directory suffix =" Test.php" >../../../vendor/integer-net/magento2-global-custom-layout/tests/Integration</directory >
19
+ </testsuite >
20
+ </testsuites >
21
+ <!-- Code coverage filters -->
22
+ <filter >
23
+ <whitelist addUncoveredFilesFromWhiteList =" true" >
24
+ <directory suffix =" .php" >../../../vendor/integer-net/magento2-global-custom-layout/src</directory >
25
+ </whitelist >
26
+ </filter >
27
+ <!-- PHP INI settings and constants definition -->
28
+ <php >
29
+ <includePath >.</includePath >
30
+ <includePath >testsuite</includePath >
31
+ <ini name =" date.timezone" value =" America/Los_Angeles" />
32
+ <ini name =" xdebug.max_nesting_level" value =" 200" />
33
+ <!-- Local XML configuration file ('.dist' extension will be added, if the specified file doesn't exist) -->
34
+ <const name =" TESTS_INSTALL_CONFIG_FILE" value =" etc/install-config-mysql.php" />
35
+ <!-- Local XML configuration file ('.dist' extension will be added, if the specified file doesn't exist) -->
36
+ <const name =" TESTS_GLOBAL_CONFIG_FILE" value =" etc/config-global.php" />
37
+ <!-- Semicolon-separated 'glob' patterns, that match global XML configuration files -->
38
+ <const name =" TESTS_GLOBAL_CONFIG_DIR" value =" ../../../app/etc" />
39
+ <!-- Whether to cleanup the application before running tests or not -->
40
+ <!-- <const name="TESTS_CLEANUP" value="enabled"/>-->
41
+ <const name =" TESTS_CLEANUP" value =" enabled" />
42
+ <!-- Memory usage and estimated leaks thresholds -->
43
+ <!-- <const name="TESTS_MEM_USAGE_LIMIT" value="1024M"/>-->
44
+ <const name =" TESTS_MEM_LEAK_LIMIT" value =" " />
45
+ <!-- Whether to output all CLI commands executed by the bootstrap and tests -->
46
+ <!-- <const name="TESTS_EXTRA_VERBOSE_LOG" value="1"/>-->
47
+ <!-- Path to Percona Toolkit bin directory -->
48
+ <!-- <const name="PERCONA_TOOLKIT_BIN_DIR" value=""/>-->
49
+ <!-- CSV Profiler Output file -->
50
+ <!-- <const name="TESTS_PROFILER_FILE" value="profiler.csv"/>-->
51
+ <!-- Bamboo compatible CSV Profiler Output file name -->
52
+ <!-- <const name="TESTS_BAMBOO_PROFILER_FILE" value="profiler.csv"/>-->
53
+ <!-- Metrics for Bamboo Profiler Output in PHP file that returns array -->
54
+ <!-- <const name="TESTS_BAMBOO_PROFILER_METRICS_FILE" value="../../build/profiler_metrics.php"/>-->
55
+ <!-- Whether to output all CLI commands executed by the bootstrap and tests -->
56
+ <const name =" TESTS_EXTRA_VERBOSE_LOG" value =" 1" />
57
+ <!-- Magento mode for tests execution. Possible values are "default", "developer" and "production". -->
58
+ <const name =" TESTS_MAGENTO_MODE" value =" developer" />
59
+ <!-- Minimum error log level to listen for. Possible values: -1 ignore all errors, and level constants form http://tools.ietf.org/html/rfc5424 standard -->
60
+ <const name =" TESTS_ERROR_LOG_LISTENER_LEVEL" value =" -1" />
61
+ <!-- Connection parameters for MongoDB library tests -->
62
+ <!-- <const name="MONGODB_CONNECTION_STRING" value="mongodb://localhost:27017"/>-->
63
+ <!-- <const name="MONGODB_DATABASE_NAME" value="magento_integration_tests"/>-->
64
+ </php >
65
+ <!-- Test listeners -->
66
+ <listeners >
67
+ <listener class =" Magento\TestFramework\Event\PhpUnit" />
68
+ <listener class =" Magento\TestFramework\ErrorLog\Listener" />
69
+ </listeners >
70
+ </phpunit >
0 commit comments