Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
34 lines (34 loc) · 1.05 KB
/
Copy pathphpunit.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"?>
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"cacheDirectory=".phpunit.cache">
<coverage>
<report>
<cloveroutputFile="code-coverage/clover.xml"/>
<htmloutputDirectory="code-coverage/report.html"/>
</report>
</coverage>
<testsuites>
<testsuitename="AllTests">
<directory>lam/tests</directory>
</testsuite>
</testsuites>
<php>
<includePath>lam</includePath>
</php>
<logging>
<junitoutputFile="code-coverage/junit.xml"/>
</logging>
<source>
<include>
<directorysuffix=".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>