-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
58 lines (54 loc) · 1.68 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
backupGlobals = "false"
backupStaticAttributes = "false"
colors = "true"
convertErrorsToExceptions = "true"
convertNoticesToExceptions = "true"
convertWarningsToExceptions = "true"
processIsolation = "false"
stopOnFailure = "false"
syntaxCheck = "false"
bootstrap="./Tests/bootstrap.php"
>
<php>
<server name="SYMFONY" value="../../../vendor/symfony/src" />
<server name="DOCTRINE_ORM" value="../../../vendor/doctrine/lib" />
<server name="DOCTRINE_COMMON" value="../../../vendor/doctrine-common/lib" />
<server name="DOCTRINE_DBAL" value="../../../vendor/doctrine-dbal/lib" />
<server name="DOCTRINE_FIXTURES" value="../../../vendor/doctrine-fixtures/lib" />
</php>
<!--
<php>
<server name="KERNEL_DIR" value="../../../../../app" />
</php>
-->
<testsuites>
<testsuite name="MajistiUtilsBundle">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<testsuites>
<testsuite name="MenuBundle Test Suite">
<directory>./Tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
</exclude>
</whitelist>
</filter>
<filter>
<whitelist>
<directory>./</directory>
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
</exclude>
</whitelist>
</filter>
</phpunit>