-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
44 lines (40 loc) · 1.42 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
34
35
36
37
38
39
40
41
42
43
44
<phpunit
bootstrap="vendor/autoload.php"
cacheResultFile="tests/cache/.phpunit.result.cache"
backupGlobals="false"
colors="true"
verbose="true"
executionOrder="random">
<php>
<ini name="memory_limit" value="-1"/>
<ini name="display_errors" value="true"/>
</php>
<testsuites>
<testsuite name="Tests">
<directory phpVersion="7.4.0" phpVersionOperator=">=" suffix=".php">tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory="tests/cache/"
includeUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="false">
<include>
<directory suffix=".php">src</directory>
</include>
<!-- <exclude>
<directory suffix=".php">src/generated</directory>
<file>src/autoload.php</file>
</exclude> -->
<report>
<html outputDirectory="tests/coverage/html" lowUpperBound="50" highLowerBound="90"/>
<!-- <xml outputDirectory="tests/coverage/xml"/> -->
<clover outputFile="coverage.xml"/>
<!-- <php outputFile="tests/coverage/coverage.php"/> -->
<!-- <text outputFile="tests/coverage/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/> -->
</report>
</coverage>
<logging>
<text outputFile="tests/logs/logfile.txt"/>
</logging>
</phpunit>