forked from occitech/SRIORestUploadBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 934 Bytes
/
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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
failOnRisky="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache"
>
<coverage/>
<php>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_CLASS" value="SRIO\RestUploadBundle\Tests\Fixtures\Kernel"/>
<server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=0"/>
<server name="DATABASE_URL" value="sqlite:///%kernel.project_dir%/tests/Fixtures/var/data.db"/>
</php>
<testsuites>
<testsuite name="SRIOUploadBundle Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>