forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
26 lines (24 loc) · 791 Bytes
/
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
<phpunit bootstrap="tests/bootstrap.php"
stderr="true"
colors="true" >
<testsuites>
<testsuite name="unit">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="functional">
<directory>tests/functional</directory>
</testsuite>
<testsuite name="acceptance">
<directory>tests/functional/acceptance</directory>
</testsuite>
</testsuites>
<!-- This filter is for the code coverage -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">application/models/services</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="cov.xml"/>
</logging>
</phpunit>