-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml
30 lines (28 loc) · 962 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
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<testsuites>
<testsuite name="full">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>src/BowlOfSoupNormalizerBundle.php</file>
<directory>src/DependencyInjection</directory>
<directory>src/EventListener</directory>
<directory>src/Exception</directory>
<directory>src/Model</directory>
<directory>src/Resources</directory>
<directory>tests</directory>
<directory>vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-clover" target="tests/coverage/clover.xml"/>
<log type="coverage-html" target="tests/coverage" />
</logging>
</phpunit>