-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml
30 lines (29 loc) · 995 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
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
bootstrap="./vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="UrlSignatureBundle">
<directory suffix="Test.php">./Tests</directory>
</testsuite>
</testsuites>
<php>
<server name="KERNEL_CLASS" value="Tests\Fixtures\TestKernel"/>
<server name="KERNEL_DIR" value="Shift/UrlSignatureBundle/Tests/Fixtures"/>
<env name="SHELL_VERBOSITY" value="-1"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="/disabled/"/>
<env name="APP_SECRET" value="i-am-a-secret-string"/>
</php>
<filter>
<whitelist>
<directory>./Shift/UrlSignatureBundle/</directory>
<exclude>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>