forked from postfixadmin/postfixadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
35 lines (30 loc) · 954 Bytes
/
Copy pathphpunit.xml
File metadata and controls
35 lines (30 loc) · 954 Bytes
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
35
<phpunit
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="default">
<directory>./tests</directory>
</testsuite>
</testsuites>
<php>
<const name="PHPUNIT_TEST" value="true" />
</php>
<coverage>
<report>
<clover outputFile="build/logs/clover.xml"/>
<html outputDirectory="html-coverage" lowUpperBound="50" highLowerBound="80"/>
</report>
</coverage>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>./model/</directory>
<directory>./public/</directory>
<file>./functions.inc.php</file>
</include>
<exclude>
<directory>./tests/</directory>
<directory>./vendor/</directory>
<directory>./lib/</directory>
</exclude>
</source>
</phpunit>