-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
32 lines (32 loc) · 987 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
colors="true"
processIsolation="true"
stopOnFailure="true"
backupGlobals="false"
cacheResult="true"
cacheDirectory="var/cache/.phpunit.cache"
cacheResultFile="var/cache/.phpunit.cache/.phpunit.result.cache"
bootstrap="vendor/autoload.php"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd">
<coverage>
<report>
<clover outputFile="var/cache/coverage/xml/clover.xml"/>
<html outputDirectory="var/cache/coverage/html"/>
</report>
</coverage>
<testsuites>
<testsuite name="http-doctrine-dbal-filter">
<directory>tests</directory>
</testsuite>
</testsuites>
<logging/>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
<exclude>
<file>tests/bootstrap.php</file>
</exclude>
</source>
</phpunit>