forked from zfcampus/zf-apigility-doctrine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
33 lines (32 loc) · 1.25 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
32
33
<?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/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/Collection</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>.</directory>
<exclude>
<directory>./vendor</directory>
<directory>./test</directory>
<file>./config/module.config.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="test/code-coverage" charset="UTF-8" yui="true" lowUpperBound="35" highLowerBound="70" />
<log type="coverage-clover" target="test/build/logs/clover.xml"/>
</logging>
</phpunit>