|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?>
|
2 |
| -<phpunit colors="true" bootstrap="vendor/autoload.php"> |
3 |
| - <testsuites> |
4 |
| - <testsuite name="Unit tests"> |
5 |
| - <directory>tests/</directory> |
6 |
| - </testsuite> |
7 |
| - |
8 |
| - <testsuite name="Integration tests"> |
9 |
| - <directory>./vendor/http-interop/http-factory-tests/test</directory> |
10 |
| - </testsuite> |
11 |
| - </testsuites> |
12 |
| - |
13 |
| - <filter> |
14 |
| - <whitelist> |
15 |
| - <directory suffix=".php">src/</directory> |
16 |
| - </whitelist> |
17 |
| - </filter> |
18 |
| - |
19 |
| - <php> |
20 |
| - <const name="REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
21 |
| - <const name="RESPONSE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
22 |
| - <const name="SERVER_REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
23 |
| - <const name="UPLOADED_FILE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
24 |
| - <const name="URI_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
25 |
| - <const name="STREAM_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
26 |
| - </php> |
| 2 | +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> |
| 3 | + <coverage> |
| 4 | + <include> |
| 5 | + <directory suffix=".php">src/</directory> |
| 6 | + </include> |
| 7 | + </coverage> |
| 8 | + <testsuites> |
| 9 | + <testsuite name="Unit tests"> |
| 10 | + <directory>tests/</directory> |
| 11 | + </testsuite> |
| 12 | + <testsuite name="Integration tests"> |
| 13 | + <directory>./vendor/http-interop/http-factory-tests/test</directory> |
| 14 | + </testsuite> |
| 15 | + </testsuites> |
| 16 | + <php> |
| 17 | + <const name="REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 18 | + <const name="RESPONSE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 19 | + <const name="SERVER_REQUEST_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 20 | + <const name="UPLOADED_FILE_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 21 | + <const name="URI_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 22 | + <const name="STREAM_FACTORY" value="Nyholm\Psr7\Factory\Psr17Factory"/> |
| 23 | + </php> |
27 | 24 | </phpunit>
|
0 commit comments