-
Notifications
You must be signed in to change notification settings - Fork 8
/
phpunit.xml.yireo
29 lines (29 loc) · 1.03 KB
/
phpunit.xml.yireo
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
<?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/4.1/phpunit.xsd"
colors="true"
bootstrap="../../../dev/tests/unit/framework/bootstrap.php"
>
<testsuite name="Yireo Unit Tests">
<directory suffix="Test.php">../../../app/code/Yireo/EmailTester2/Test/Unit</directory>
<directory suffix="Test.php">../../../vendor/yireo/magento2-emailtester2/Test/Unit</directory>
</testsuite>
<php>
<ini name="date.timezone" value="Europe/Amsterdam"/>
<ini name="xdebug.max_nesting_level" value="200"/>
</php>
<filter>
<whitelist>
<directory suffix=".php">../../../app/code/*</directory>
<exclude>
<directory>../../../app/code/*/*/Test</directory>
</exclude>
</whitelist>
</filter>
</phpunit>