forked from tawfekov/ZF2EntityAudit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
executable file
·33 lines (33 loc) · 1.2 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
<?xml version="1.0"?>
<phpunit bootstrap="./tests/Bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
stopOnFailure="true"
processIsolation="false"
backupGlobals="false"
syntaxCheck="true">
<testsuites>
<testsuite name="ZF2EntityAuditTest">
<directory>./tests/ZF2EntityAuditTest/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./src/ZF2EntityAudit/Controller</directory>
<directory suffix=".php">./src/ZF2EntityAudit/View</directory>
<file>./src/ZF2EntityAudit/Version.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./clover.xml"/>
<log type="coverage-html" target="./report" charset="UTF-8"
yui="true" highlight="false"
lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>