25 lines
1.1 KiB
XML
25 lines
1.1 KiB
XML
<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\Guzzle\RequestFactory"/>
|
|
<const name="RESPONSE_FACTORY" value="Http\Factory\Guzzle\ResponseFactory"/>
|
|
<const name="SERVER_REQUEST_FACTORY" value="Http\Factory\Guzzle\ServerRequestFactory"/>
|
|
<const name="STREAM_FACTORY" value="Http\Factory\Guzzle\StreamFactory"/>
|
|
<const name="UPLOADED_FILE_FACTORY" value="Http\Factory\Guzzle\UploadedFileFactory"/>
|
|
<const name="URI_FACTORY" value="Http\Factory\Guzzle\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>
|