forked from NetCommons3/NetCommons3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
22 lines (22 loc) · 952 Bytes
/
phpunit.xml.dist
File metadata and controls
22 lines (22 loc) · 952 Bytes
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 bootstrap="vendors/autoload.php">
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">app</directory>
<directory suffix=".ctp">app</directory>
<exclude>
<directory suffix=".php">app/Config</directory>
<directory suffix=".php">app/Lib</directory>
<directory suffix=".php">app/Plugin</directory>
<directory suffix=".php">app/Test</directory>
<directory suffix=".php">app/Vendor</directory>
<directory suffix=".php">app/tmp</directory>
<directory suffix=".php">vendors</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-html" target="build/logs/clover"/>
</logging>
</phpunit>