forked from LimeSurvey/LimeSurvey
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (35 loc) · 1.42 KB
/
phpunit.xml
File metadata and controls
37 lines (35 loc) · 1.42 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
<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>
<testsuite name="remotecontrolunit">
<file>tests/unit/CsrfHttpRequestTest.php</file>
<file>tests/unit/helpers/RemoteControlGetAvailableSiteSettingsTest.php</file>
<file>tests/unit/helpers/RemoteControlGetUploadedFilesTest.php</file>
<file>tests/unit/helpers/RemoteControlQuotaTest.php</file>
<directory>tests/unit/helpers/remotecontrol</directory>
</testsuite>
<testsuite name="remotecontrolfunctional">
<file>tests/functional/backend/RemoteControlJsonrpcTest.php</file>
<file>tests/functional/backend/RemoteControlXmlrpcTest.php</file>
</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>