function StackKernelIntegrationTest::testRequest

Tests a request.

File

core/tests/Drupal/KernelTests/Core/HttpKernel/StackKernelIntegrationTest.php, line 27

Class

StackKernelIntegrationTest
Tests the stacked kernel functionality.

Namespace

Drupal\KernelTests\Core\HttpKernel

Code

public function testRequest() {
  $request = Request::create((new Url('httpkernel_test.empty'))->toString());
  /** @var \Symfony\Component\HttpKernel\HttpKernelInterface $http_kernel */
  $http_kernel = \Drupal::service('http_kernel');
  $http_kernel->handle($request, HttpKernelInterface::MASTER_REQUEST, FALSE);
  $this->assertEquals('world', $request->attributes
    ->get('_hello'));
  $this->assertEquals('test_argument', $request->attributes
    ->get('_previous_optional_argument'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.