-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
49 lines (49 loc) · 1.42 KB
/
phpunit.xml
File metadata and controls
49 lines (49 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="Tests/test_bootstrap.php"
cacheResultFile="Tests/.phpunit.cache/results.cache"
cacheResult="true"
colors="true"
executionOrder="depends,defects"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="false"
backupGlobals="false"
>
<php>
<ini name="memory_limit" value="256M"/>
</php>
<testsuites>
<testsuite name="Unit Tests">
<directory>Tests/Unit</directory>
</testsuite>
</testsuites>
<coverage
cacheDirectory="Tests/.phpunit.cache/code-coverage/"
processUncoveredFiles="true"
>
<include>
<directory suffix=".php">inc</directory>
</include>
<exclude>
<!-- Exclude all test code from coverage -->
<directory>Tests</directory>
<!-- Exclude all documentation and example code from coverage/parsing -->
<directory>inc/**/docs</directory>
<directory>inc/**/docs/**</directory>
<directory>docs</directory>
<directory>examples</directory>
</exclude>
<report>
<html outputDirectory="Tests/coverage/html-coverage" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>