| Total Complexity | 6 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class HttpFactoryTest extends TestCase |
||
| 15 | { |
||
| 16 | public function testCanDiscoverRequestFactory(): void |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testCanDiscoverResponseFactory(): void |
||
| 22 | { |
||
| 23 | $this->assertSame(HttpFactory::responseFactory(), HttpFactory::responseFactory()); |
||
| 24 | } |
||
| 25 | |||
| 26 | public function testCanDiscoverServerRequestFactory(): void |
||
| 29 | } |
||
| 30 | |||
| 31 | public function testCanDiscoverStreamFactory(): void |
||
| 32 | { |
||
| 33 | $this->assertSame(HttpFactory::streamFactory(), HttpFactory::streamFactory()); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function testCanDiscoverUploadedFileFactory(): void |
||
| 37 | { |
||
| 38 | $this->assertSame(HttpFactory::uploadedFileFactory(), HttpFactory::uploadedFileFactory()); |
||
| 39 | } |
||
| 40 | |||
| 41 | public function testCanDiscoverUriFactory(): void |
||
| 44 | } |
||
| 45 | } |
||
| 46 |