forked from zfcampus/zf-apigility-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
31 lines (30 loc) · 1.15 KB
/
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
27
28
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./test/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="admin">
<directory>./test/Admin</directory>
</testsuite>
<testsuite name="server-orm">
<directory>./test/src/Server/ORM/Setup</directory>
<directory>./test/src/Server/ORM/CRUD</directory>
<directory>./test/src/Server/ORM/Event</directory>
<directory>./test/src/Server/ORM/Collection</directory>
</testsuite>
<testsuite name="server-odm">
<directory>./test/src/Server/ODM/Setup</directory>
<directory>./test/src/Server/ODM/CRUD</directory>
<directory>./test/src/Server/ODM/Event</directory>
<directory>./test/src/Server/ODM/Collection</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>.</directory>
<exclude>
<directory>./vendor</directory>
<directory>./test</directory>
<file>./config/module.config.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>