-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
23 lines (21 loc) · 860 Bytes
/
phpunit.xml.dist
File metadata and controls
23 lines (21 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.0/phpunit.xsd"
colors="true"
bootstrap="tests/bootstrap.php"
failOnRisky="true"
failOnWarning="true"
>
<php>
<server name="KERNEL_CLASS" value="araise\TableBundle\Tests\App\Kernel"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<server name="SYMFONY_DEPRECATIONS_HELPER" value="max[self]=0&max[direct]=0"/>
<env name="DATABASE_URL" value="mysql://root:root@127.0.01:3306/table_bundle" />
<env name="DATABASE_DRIVER" value="pdo_mysql" />
</php>
<testsuites>
<testsuite name="Search Test Bundle">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>