forked from API-Skeletons/zf-doctrine-querybuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (31 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./test/Bootstrap.php" colors="true">
<testsuites>
<testsuite name="filter-orm">
<file>./test/Filter/ORMFilterTest.php</file>
</testsuite>
<testsuite name="filter-odm">
<file>./test/Filter/ODMFilterTest.php</file>
</testsuite>
<testsuite name="orderby-orm">
<file>./test/OrderBy/ORMOrderByTest.php</file>
</testsuite>
<testsuite name="orderby-odm">
<file>./test/OrderBy/ODMOrderByTest.php</file>
</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>