forked from zendframework/zend-diactoros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
26 lines (24 loc) · 1.09 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
<phpunit bootstrap="./vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Zend\\Diactoros Tests">
<directory>./test</directory>
</testsuite>
<testsuite name="PSR-17 Integration Tests">
<directory>./vendor/http-interop/http-factory-tests/test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<env name="ALWAYS_REFRESH_IANA_HTTP_STATUS_CODES" value="false"/>
<const name="REQUEST_FACTORY" value="Zend\Diactoros\RequestFactory"/>
<const name="RESPONSE_FACTORY" value="Zend\Diactoros\ResponseFactory"/>
<const name="SERVER_REQUEST_FACTORY" value="Zend\Diactoros\ServerRequestFactory"/>
<const name="STREAM_FACTORY" value="Zend\Diactoros\StreamFactory"/>
<const name="UPLOADED_FILE_FACTORY" value="Zend\Diactoros\UploadedFileFactory"/>
<const name="URI_FACTORY" value="Zend\Diactoros\UriFactory"/>
</php>
</phpunit>