-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
39 lines (36 loc) · 1.33 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 backupGlobals="false"
bootstrap="vendor/autoload.php"
backupStaticAttributes="false"
processIsolation="false"
stopOnFailure="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
beStrictAboutCoversAnnotation="true"
colors="true"
verbose="true"
executionOrder="default"
resolveDependencies="true">
<testsuites>
<testsuite name="unit">
<directory suffix=".php">./tests/unit</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true"
includeUncoveredFiles="true"
ignoreDeprecatedCodeUnits="false"
disableCodeCoverageIgnore="false">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<html outputDirectory="html-coverage" lowUpperBound="50" highLowerBound="90"/>
<text outputFile="php://stdout" showOnlySummary="true"/>
<clover outputFile="coverage/clover.xml"/>
</report>
</coverage>
</phpunit>