forked from diagnosia/httpful
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (24 loc) · 737 Bytes
/
phpunit.xml
File metadata and controls
25 lines (24 loc) · 737 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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap="tests/bootstrap-server.php"
stopOnFailure="true"
>
<coverage>
<include>
<directory suffix=".php">tests</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Httpful">
<directory>tests</directory>
</testsuite>
</testsuites>
<php>
<env name="WEB_SERVER_HOST" value="localhost" />
<env name="WEB_SERVER_PORT" value="1349" />
<env name="WEB_SERVER_DOCROOT" value="./static" />
<env name="http_proxy" value="" />
</php>
</phpunit>