-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
27 lines (27 loc) · 883 Bytes
/
phpunit.xml.dist
File metadata and controls
27 lines (27 loc) · 883 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
executionOrder="random"
failOnWarning="false">
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile="./clover.xml"/>
</report>
</coverage>
<testsuites>
<testsuite name="Hostfact API Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<env name="HOSTFACT_URL" value="test://hostfact.tld/Pro/apiv2/api.php"/>
<env name="HOSTFACT_KEY" value="abcdefghijklmnopqrstuvwxyz0123456789"/>
</php>
</phpunit>