forked from LDAPAccountManager/lam
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
31 lines (31 loc) · 956 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<testsuite name="AllTests">
<directory>lam/tests</directory>
</testsuite>
</testsuites>
<php>
<includePath>lam</includePath>
</php>
<logging>
<log type="coverage-html" target="code-coverage/report.html"/>
<log type="coverage-clover" target="code-coverage/clover.xml"/>
<log type="junit" target="code-coverage/junit.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".inc">lam/lib</directory>
<exclude>
<directory>lam/tests</directory>
<directory>lam/lib/3rdParty</directory>
<directory>lam/templates/3rdParty</directory>
<file>lam/lib/adminHeader.inc</file>
<file>lam/lib/adminFooter.inc</file>
<file>lam/lib/cron.inc</file>
<file>lam/lib/security.inc</file>
<file>lam/lib/checkEnvironment.inc</file>
</exclude>
</whitelist>
</filter>
</phpunit>