-
Notifications
You must be signed in to change notification settings - Fork 105
/
phpunit.xml
38 lines (36 loc) · 1.24 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
cacheResultFile="./var/.phpunit.result.cache"
stopOnFailure="false">
<testsuites>
<testsuite name="unit">
<directory>tests/Unit</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/Functional</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory="var/coverage-cache"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<report>
<html outputDirectory="var/coverage-report-html"/>
<xml outputDirectory="var/coverage-report-xml"/>
<text outputFile="php://stdout" showOnlySummary="true"/>
</report>
<include>
<directory>src</directory>
</include>
</coverage>
</phpunit>