forked from PGYER/codefever
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
executable file
·24 lines (24 loc) · 880 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit>
<testsuites>
<testsuite name="model">
<directory>tests/model</directory>
</testsuite>
<testsuite name="service">
<directory>tests/service</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">application/controllers/api</directory>
<directory suffix=".php">application/controllers/apiv1</directory>
<directory suffix=".php">application/event_handlers</directory>
<directory suffix=".php">application/libraries/service</directory>
<directory suffix=".php">application/models</directory>
<exclude>
<file>application/event_handlers/EventHandler.php</file>
<file>application/libraries/service/autoLoader.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>