| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function testPassedGetParametersAreTrimmed( array $expected, array $request ): void { |
||
| 17 | $client = $this->createClient( [], null, self::DISABLE_DEBUG ); |
||
| 18 | $client->request( 'GET', '/actually-every-route', $request ); |
||
| 19 | |||
| 20 | $this->assertSame( $expected, $client->getRequest()->query->all() ); |
||
| 21 | } |
||
| 22 | |||
| 56 |