function DrupalTest::testRequestStack

Tests the testRequestStack() method.

@covers ::requestStack

File

core/tests/Drupal/Tests/Core/DrupalTest.php, line 201

Class

DrupalTest
Tests the Drupal class.

Namespace

Drupal\Tests\Core

Code

public function testRequestStack() : void {
  $request_stack = new RequestStack();
  $this->setMockContainerService('request_stack', $request_stack);
  $this->assertSame($request_stack, \Drupal::requestStack());
}

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