-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml.dist
26 lines (26 loc) · 1.29 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
<testsuites>
<testsuite name="Unit tests">
<directory>./tests</directory>
</testsuite>
<testsuite name="Integration tests">
<directory>./vendor/http-interop/http-factory-tests/test</directory>
</testsuite> </testsuites>
<php>
<const name="REQUEST_FACTORY" value="Tuupola\Http\Factory\RequestFactory"/>
<const name="RESPONSE_FACTORY" value="Tuupola\Http\Factory\ResponseFactory"/>
<const name="SERVER_REQUEST_FACTORY" value="Tuupola\Http\Factory\ServerRequestFactory"/>
<const name="STREAM_FACTORY" value="Tuupola\Http\Factory\StreamFactory"/>
<const name="UPLOADED_FILE_FACTORY" value="Tuupola\Http\Factory\UploadedFileFactory"/>
<const name="URI_FACTORY" value="Tuupola\Http\Factory\UriFactory"/>
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
<blacklist>
<directory suffix=".php">vendor/</directory>
</blacklist>
</filter>
</phpunit>