forked from jedi-academy/CodeIgniter3.1-starter4
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 1.01 KB
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 1.01 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/Bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
>
<testsuites>
<testsuite name="My Test Suite">
<directory>./tests/application</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">application/models</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="tests/coverage/clover.xml"/>
<log type="coverage-html" target="tests/coverage/report" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-text" target="tests/coverage/coverage.txt" showUncoveredFiles="false"/>
</logging>
</phpunit>