clam2021/vendor/tuupola/http-factory/phpunit.xml.dist

26 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-05-13 16:04:00 +00:00
<?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>