forked from dadajuice/zephyrus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
39 lines (39 loc) · 1.53 KB
/
phpunit.xml
File metadata and controls
39 lines (39 loc) · 1.53 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
<phpunit
bootstrap="tests/lib/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/application</directory>
<directory>tests/utilities</directory>
<directory>tests/network</directory>
<directory>tests/security</directory>
<directory>tests/database</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>./src/Zephyrus/functions.php</file>
<file>./src/Zephyrus/Network/ContentType.php</file>
<file>./src/Zephyrus/Utilities/Validator.php</file>
<file>./src/Zephyrus/Application/Bootstrap.php</file>
<file>./src/Zephyrus/Security/Controller.php</file>
<file>./src/Zephyrus/Application/ErrorHandler.php</file>
<file>./src/Zephyrus/Network/Routable.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>