-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
phpunit.xml.dist
36 lines (36 loc) · 1.5 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
33
34
35
36
<?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"
cacheDirectory=".phpunit.cache"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnSkippedTests="true"
>
<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>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
</phpunit>