26 lines
1.3 KiB
Plaintext
26 lines
1.3 KiB
Plaintext
|
<?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>
|