public function SessionCacheContextTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Cache/Context/SessionCacheContextTest.php \Drupal\Tests\Core\Cache\Context\SessionCacheContextTest::setUp()
 
Overrides UnitTestCase::setUp
File
- core/
tests/ Drupal/ Tests/ Core/ Cache/ Context/ SessionCacheContextTest.php, line 37  
Class
- SessionCacheContextTest
 - @coversDefaultClass \Drupal\Core\Cache\Context\SessionCacheContext @group Cache
 
Namespace
Drupal\Tests\Core\Cache\ContextCode
public function setUp() : void {
  $this->request = new Request();
  $this->requestStack = new RequestStack();
  $this->requestStack
    ->push($this->request);
  $this->session = $this
    ->getMockBuilder('\\Symfony\\Component\\HttpFoundation\\Session\\SessionInterface')
    ->getMock();
}