PHP code example of http-interop / http-factory-tests

1. Go to this page and download the library: Download http-interop/http-factory-tests library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

http-interop / http-factory-tests example snippets

xml
<phpunit backupGlobals="true">
    <testsuites>
        <testsuite name="Integration tests">
            <directory>./vendor/http-interop/http-factory-tests/test</directory>
        </testsuite>
    </testsuites>
    <php>
      <!-- Fully qualified class names to your classes -->
      <const name="REQUEST_FACTORY" value="Acme\Factory\RequestFactory"/>
      <const name="RESPONSE_FACTORY" value="Acme\Factory\ResponseFactory"/>
      <const name="SERVER_REQUEST_FACTORY" value="Acme\Factory\ServerRequestFactory"/>
      <const name="STREAM_FACTORY" value="Acme\Factory\StreamFactory"/>
      <const name="UPLOADED_FILE_FACTORY" value="Acme\Factory\UploadedFileFactory"/>
      <const name="URI_FACTORY" value="Acme\Factory\UriFactory"/>
    </php>
</phpunit>