-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
39 lines (38 loc) · 1.08 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
<?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"
cacheResult="true"
cacheResultFile="tests/.phpunit.cache/"
colors="true"
executionOrder="depends,defects"
forceCoversAnnotation="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
convertDeprecationsToExceptions="true"
failOnRisky="true"
failOnWarning="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
>
<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>
<report>
<html outputDirectory="tests/coverage/html-coverage" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>