public function InputBagTest::testRequestFactory in Drupal 9
@coversNothing @todo Remove this when Symfony 4 is no longer supported.
File
- core/
tests/ Drupal/ Tests/ Core/ Http/ InputBagTest.php, line 36  
Class
- InputBagTest
 - @coversDefaultClass \Drupal\Core\Http\InputBag
 
Namespace
Drupal\Tests\Core\HttpCode
public function testRequestFactory() {
  $request = Request::create('');
  $this
    ->assertInstanceOf(InputBag::class, $request->query);
}