-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
33 lines (33 loc) · 1.19 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
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="tests/unit/bootstrap.php"
colors="true"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
backupGlobals="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false">
<testsuite name="Main Test Suite">
<directory>./tests/unit/</directory>
<directory>./extensions/dvelum-core/tests/unit/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">./application/classes</directory>
<directory suffix=".php">./dvelum/src</directory>
<directory suffix=".php">./extensions/dvelum-core/src</directory>
<exclude>
<directory suffix=".phtml">./</directory>
<file>./bootstrap.php</file>
<file>./console.php</file>
<file>./console_client.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./data/phpunit_report" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>