-
Notifications
You must be signed in to change notification settings - Fork 51
/
phpunit.xml
32 lines (29 loc) · 1.11 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
>
<testsuites>
<testsuite name="default">
<directory>Test/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./Block</directory>
<directory suffix=".php">./Controller</directory>
<directory suffix=".php">./Helper</directory>
<directory suffix=".php">./Model</directory>
<directory suffix=".php">./Observer</directory>
<directory suffix=".php">./Plugin</directory>
<directory suffix=".php">./Setup</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="Test/log/report" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="testdox-html" target="Test/log/testdox.html"/>
<log type="testdox-text" target="Test/log/testdox.txt"/>
</logging>
</phpunit>