File: README.md

package info (click to toggle)
php-http-interop-http-factory-tests 2.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 152 kB
  • sloc: php: 549; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 893 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Unit tests for HTTP Factory implementations

To use these unit tests you need to add some config to phpunit.xml. 

```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>

```