-
Notifications
You must be signed in to change notification settings - Fork 67
/
phpunit.xml.dist
executable file
·40 lines (37 loc) · 1.33 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
39
40
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* {license_notice}
*
* @copyright {copyright}
* @license {license_link}
*/
-->
<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="Mtf\System\Browser\Listener"/>
<listener class="Mtf\System\Isolation\Listener">
<arguments>
<object class="Mtf\System\Isolation\Driver\Base"/>
</arguments>
</listener>
</listeners>
<php>
<env name="app_frontend_url" value="http://google.com/"/>
<env name="app_backend_url" value="http://localhost/backend/"/>
<env name="app_config_path" value="config/application.yml.dist"/>
<env name="server_config_path" value="config/server.yml.dist"/>
<env name="isolation_config_path" value="config/isolation.yml.dist"/>
<env name="handlers_config_path" value="config/handler.yml.dist"/>
<env name="configuration:Magento/Mtf/TestSuite/MtfTests" value="basic"/>
</php>
</phpunit>