-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml
33 lines (33 loc) · 1.1 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
<phpunit
bootstrap="tests/init.php"
colors="true"
backupGlobals="false"
backupStaticAttributes="false"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="application">
<directory>tests/Models</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">app</directory>
<exclude>
<file>./app/kernel.php</file>
<file>./app/security.php</file>
<file>./app/acl.php</file>
<file>./app/handlers_dev.php</file>
<file>./app/handlers_prod.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="tests/coverage/result.xml" />
<log type="coverage-html" target="tests/coverage/result" />
</logging>
</phpunit>