forked from artgris/FileManagerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
45 lines (41 loc) · 1.55 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="Tests/bootstrap.php"
>
<testsuites>
<testsuite name="File Manager Bundle test suite">
<directory suffix="Test.php">Tests</directory>
</testsuite>
</testsuites>
<php>
<server name="KERNEL_DIR" value="./Tests/Fixtures/App"/>
<server name="KERNEL_CLASS" value="AppKernel"/>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="1"/>
<ini name="display_startup_errors" value="1"/>
<ini name="memory_limit" value="-1"/>
<ini name="zend.enable_gc" value="1"/>
<!-- ###+ symfony/framework-bundle ### -->
<env name="APP_ENV" value="dev"/>
<env name="APP_SECRET" value="357429e9e5a459780a823191a4c349ec"/>
<!-- ###- symfony/framework-bundle ### -->
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./Controller</directory>
<directory suffix=".php">./Resources</directory>
<exclude>
<directory>./build</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>