forked from yireo/Yireo_GoogleTagManager2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.yireo.xml
22 lines (22 loc) · 863 Bytes
/
phpunit.yireo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<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/*/Test/Unit</directory>
</testsuite>
<php>
<ini name="date.timezone" value="Europe/Amsterdam"/>
<ini name="xdebug.max_nesting_level" value="200"/>
</php>
<filter>
<whitelist addUncoveredFilesFromWhiteList="true">
<directory suffix=".php">../../../app/code/*</directory>
<exclude>
<directory>../../../app/code/*/*/Test</directory>
</exclude>
</whitelist>
</filter>
</phpunit>