-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
23 lines (21 loc) · 779 Bytes
/
phpunit.xml.dist
File metadata and controls
23 lines (21 loc) · 779 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"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="test/Bootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="LaminasApiTools\Admin Module Tests">
<directory>./test</directory>
</testsuite>
</testsuites>
<php>
<env name="TESTS_LAMINAS_API_TOOLS_ADMIN_EXTMONGODB_CONNECTSTRING" value="mongodb://mongo"/>
<env name="TESTS_LAMINAS_API_TOOLS_ADMIN_EXTMONGODB_DATABASE" value="laminas_api-tools_admin_server_test"/>
</php>
</phpunit>