-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit-coverage.xml.dist
More file actions
41 lines (40 loc) · 1.6 KB
/
Copy pathphpunit-coverage.xml.dist
File metadata and controls
41 lines (40 loc) · 1.6 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheResultFile="var/cache/.phpunit.result.cache"
executionOrder="depends,defects"
displayDetailsOnPhpunitDeprecations="true"
beStrictAboutOutputDuringTests="true"
failOnRisky="true"
failOnWarning="true"
backupGlobals="false"
processIsolation="false">
<testsuites>
<testsuite name="default">
<directory>tests</directory>
<exclude>tests/Integration</exclude>
</testsuite>
<testsuite name="integration">
<directory>tests/Integration</directory>
<exclude>tests/Integration/BaseIntegrationTest.php</exclude>
<exclude>tests/Integration/Fixtures</exclude>
</testsuite>
<testsuite name="all">
<directory>tests</directory>
<exclude>tests/Integration/BaseIntegrationTest.php</exclude>
<exclude>tests/Integration/Fixtures</exclude>
</testsuite>
</testsuites>
<coverage cacheDirectory="var/cache/.phpunit.coverage.cache"
processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<html outputDirectory="var/coverage/html"/>
<text outputFile="var/coverage/coverage.txt"/>
<clover outputFile="var/coverage/clover.xml"/>
</report>
</coverage>
</phpunit>