forked from cosmocommerce/mtf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
executable file
·38 lines (35 loc) · 1.29 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © 2015 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/3.7/phpunit.xsd"
bootstrap="bootstrap.php"
backupGlobals="false"
verbose="true">
<testsuites>
<testsuite name="PHPUnit">
<directory suffix=".php">tests/Magento/Mtf</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="Magento\Mtf\System\Browser\Listener"/>
<listener class="Magento\Mtf\System\Isolation\Listener">
<arguments>
<object class="Magento\Mtf\System\Isolation\Driver\Base"/>
</arguments>
</listener>
<listener class="Magento\Mtf\System\Event\StateListener"/>
</listeners>
<php>
<env name="app_frontend_url" value="http://google.com/" />
<env name="app_backend_url" value="http://localhost/backend/" />
<env name="testsuite_rule" value="basic" />
<env name="testsuite_rule_path" value="Magento/Mtf/TestSuite/MtfTests" />
<env name="log_directory" value="var/log" />
<env name="events_preset" value="base" />
</php>
</phpunit>