forked from laminas/laminas-diactoros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
32 lines (29 loc) · 1.25 KB
/
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
32
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="./vendor/autoload.php"
colors="true"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
<testsuites>
<testsuite name="Laminas\\Diactoros Tests">
<directory>./test</directory>
</testsuite>
<testsuite name="PSR-17 Integration Tests">
<directory>./vendor/http-interop/http-factory-tests/test</directory>
</testsuite>
</testsuites>
<php>
<env name="ALWAYS_REFRESH_IANA_HTTP_STATUS_CODES" value="false"/>
<const name="REQUEST_FACTORY" value="Laminas\Diactoros\RequestFactory"/>
<const name="RESPONSE_FACTORY" value="Laminas\Diactoros\ResponseFactory"/>
<const name="SERVER_REQUEST_FACTORY" value="Laminas\Diactoros\ServerRequestFactory"/>
<const name="STREAM_FACTORY" value="Laminas\Diactoros\StreamFactory"/>
<const name="UPLOADED_FILE_FACTORY" value="Laminas\Diactoros\UploadedFileFactory"/>
<const name="URI_FACTORY" value="Laminas\Diactoros\UriFactory"/>
</php>
</phpunit>