forked from sebastianbergmann/dbunit
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathphpunit.xml.dist
31 lines (28 loc) · 1004 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
29
30
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="unit">
<directory>tests/</directory>
<exclude>tests/_files/*</exclude>
<exclude>tests/Operation/OperationsMySQLTest.php</exclude>
</testsuite>
<testsuite name="functional">
<file>tests/Operation/OperationsMySQLTest.php</file>
</testsuite>
</testsuites>
<php>
<env name="MYSQL_DB_HOST" value="127.0.0.1"/>
<env name="MYSQL_DB_PORT" value="3406"/>
<env name="MYSQL_DB_NAME" value="dbunit"/>
<env name="MYSQL_DB_USER" value="root"/>
<env name="MYSQL_DB_PASSWORD" value=""/>
</php>
<source>
<include>
<directory>src</directory>
</include>
</source>
</phpunit>