-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (27 loc) · 848 Bytes
/
phpunit.xml.dist
File metadata and controls
27 lines (27 loc) · 848 Bytes
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
<phpunit backupGlobals="true"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="false">
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<file>./src/PEIP.php</file>
<directory suffix=".php">./src/INF</directory>
<directory suffix=".php">./tests/_files</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="../clover.xml"/>
</logging>
</phpunit>