| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 11 | class ServerRequestIntegrationTest extends \Http\Psr7Test\ServerRequestIntegrationTest |
||
| 12 | { |
||
| 13 | protected $skippedTests = [ |
||
| 14 | 'testMethodIsCaseSensitive' => 'Skipped, using enums for HTTP methods', |
||
| 15 | 'testMethodWithInvalidArguments' => 'Skipped, strict type implementation', |
||
| 16 | |||
| 17 | 'testGetRequestTargetInOriginFormNormalizesUriWithMultipleLeadingSlashesInPath' => 'Is this test correct?', |
||
| 18 | |||
| 19 | 'testMethod' => 'Skipping for now ...', |
||
| 20 | 'testUriPreserveHost_NoHost_Host' => 'Skipping for now ...', |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return RequestInterface that is used in the tests |
||
| 25 | */ |
||
| 26 | public function createSubject() |
||
| 32 |