-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
29 lines (29 loc) · 898 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<source>
<include>
<directory>src</directory>
</include>
</source>
<testsuites>
<testsuite name="Core">
<directory>tests/Core</directory>
</testsuite>
<testsuite name="Database">
<directory>tests/Database</directory>
</testsuite>
<testsuite name="ModelStates">
<directory>tests/ModelStates</directory>
</testsuite>
</testsuites>
<php>
<env name="MLL_TEST_DB_DATABASE" value="test"/>
<env name="MLL_TEST_DB_HOST" value="mariadb"/>
<env name="MLL_TEST_DB_PORT" value="3306"/>
<env name="MLL_TEST_DB_USERNAME" value="root"/>
<env name="MLL_TEST_DB_PASSWORD" value=""/>
</php>
</phpunit>