-
-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (34 loc) · 1.05 KB
/
phpunit.xml
File metadata and controls
34 lines (34 loc) · 1.05 KB
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
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
<coverage>
<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>
<source>
<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/security.inc</file>
<file>lam/lib/checkEnvironment.inc</file>
</exclude>
</source>
</phpunit>