-
-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathphpunit.xml
33 lines (33 loc) · 1.06 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
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".inc">lam/lib</directory>
</include>
<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>
<report>
<clover outputFile="code-coverage/clover.xml"/>
<html outputDirectory="code-coverage/report.html"/>
</report>
</coverage>
<testsuites>
<testsuite name="AllTests">
<directory>lam/tests</directory>
</testsuite>
</testsuites>
<php>
<includePath>lam</includePath>
</php>
<logging>
<junit outputFile="code-coverage/junit.xml"/>
</logging>
</phpunit>