forked from baldurrensch/AliceBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
32 lines (27 loc) · 847 Bytes
/
phpunit.xml.dist
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 colors="true"
bootstrap="tests/SymfonyApp/autoload.php"
>
<php>
<server name="KERNEL_DIR" value="tests/SymfonyApp" />
</php>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
<log type="coverage-clover" target="coverage.xml" />
</logging>
<testsuites>
<testsuite name="AliceBundle Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
<directory>./src/Resources</directory>
</exclude>
</whitelist>
</filter>
</phpunit>