-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
31 lines (28 loc) · 1.04 KB
/
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
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/7.1/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
failOnRisky="true"
verbose="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true">
<php>
<server name="MYSQL_TEST_HOST" value="mysqldb" />
<server name="MYSQL_TEST_MYSQL_DATABASE" value="test" />
<server name="MYSQL_TEST_MYSQL_ROOT_USER" value="root" />
<server name="MYSQL_TEST_MYSQL_ROOT_PASSWORD" value="root" />
<server name="MYSQL_TEST_MYSQL_USER" value="dev" />
<server name="MYSQL_TEST_MYSQL_PASSWORD" value="dev" />
</php>
<testsuites>
<testsuite name="Tests">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>