-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
25 lines (25 loc) · 1.16 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
<phpunit backupGlobals="true" bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="Integration tests">
<directory>vendor/http-interop/http-factory-tests/test</directory>
</testsuite>
</testsuites>
<php>
<const name="REQUEST_FACTORY" value="Http\Factory\Diactoros\RequestFactory"/>
<const name="RESPONSE_FACTORY" value="Http\Factory\Diactoros\ResponseFactory"/>
<const name="SERVER_REQUEST_FACTORY" value="Http\Factory\Diactoros\ServerRequestFactory"/>
<const name="STREAM_FACTORY" value="Http\Factory\Diactoros\StreamFactory"/>
<const name="UPLOADED_FILE_FACTORY" value="Http\Factory\Diactoros\UploadedFileFactory"/>
<const name="URI_FACTORY" value="Http\Factory\Diactoros\UriFactory"/>
</php>
<filter>
<whitelist>
<directory>./src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-html" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>