-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
37 lines (35 loc) · 1.18 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
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="true">
<php>
<server name="KERNEL_DIR" value="app/" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="weak" />
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true" addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./app</directory>
<directory suffix=".php">./var</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./web</directory>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="AutoEntGesTestFunctionnal">
<directory>tests/Functionnal/AppBundle/*/</directory>
</testsuite>
<testsuite name="AutoEntGesTestUnit">
<directory>tests/Unit/AppBundle/*/</directory>
</testsuite>
</testsuites>
<logging>
<!-- and this is where your report will be written -->
<log type="coverage-html" target="./web/clover.html"/>
</logging>
</phpunit>