-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
49 lines (46 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="app/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
failOnWarning="true"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<php>
<server name="KERNEL_DIR" value="app/" />
</php>
<testsuites>
<testsuite name="Unit">
<directory>tests/*Bundle/Unit</directory>
</testsuite>
<testsuite name="Functional">
<directory>tests/*Bundle/Functional</directory>
</testsuite>
<testsuite name="Smoke">
<directory>tests/*Bundle/Smoke</directory>
</testsuite>
<testsuite name="Performance">
<directory>tests/*Bundle/Performance</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
<directory>tests</directory>
<exclude>
<directory>src/*/*Bundle/Resources</directory>
<directory>tests/*Bundle/Unit</directory>
<directory>tests/*Bundle/Functional</directory>
<directory>tests/*Bundle/Smoke</directory>
<directory>tests/*Bundle/Performance</directory>
</exclude>
</whitelist>
</filter>
</phpunit>